Skip to content

Get Scrape History

GET
/api/v2/scrapes
curl --request GET \
--url 'http://localhost:8000/api/v2/scrapes?skip=0&limit=50' \
--header 'Authorization: Bearer <token>'
skip
Skip
integer
0
limit
Limit
integer
default: 50

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>
ValidationError
object
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"
}
]
}