Scraper apiGeneratedExtraction

List extraction jobs

List and filter extraction jobs by job ID, URL, status, output format, and date range

GET
/v1/extract/jobs

Authorization

APIKeyHeader
X-Api-Key<token>

In: header

Query Parameters

job_id?|

Filter by job ID

url?|

Filter by target URL

status?|

Filter by job status

output?|

Filter by output format

start_date?|

Filter jobs created on or after this date

end_date?|

Filter jobs created on or before this date

page?Page

Page number (must be greater than 0)

page_size?Page Size

Number of results per page (max 100)

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/extract/jobs"
{
  "jobs": [
    {
      "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
      "status": "queued",
      "url": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "execution_time": 0,
      "output": [
        "markdown"
      ]
    }
  ],
  "page": 0,
  "page_size": 0,
  "page_count": 0
}
{
  "code": "string",
  "message": "string",
  "correlation_id": "string",
  "retryable": true
}
{
  "code": "string",
  "message": "string",
  "correlation_id": "string",
  "retryable": true
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}