Get Scrape History
GET
/api/v2/scrapes
const url = 'http://localhost:8000/api/v2/scrapes?skip=0&limit=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:8000/api/v2/scrapes?skip=0&limit=50' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”skip
Skip
integer
limit
Limit
integer
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Get Scrape History Api V2 Scrapes Get
Array<object>
object
key
additional properties
any
Examplegenerated
[ {}]Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}