logo

List all jobs

Get a paginated list of all jobs for the authenticated user

GET
/api/v1/jobs
X-Token<token>

In: header

Query Parameters

page_size?integer

Number of items per page (max 100)

Default10
Rangevalue <= 100
page?integer

Page number

Default1
Range1 <= value

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://q.scrape.do/api/v1/jobs"
{
  "Jobs": [
    {
      "JobID": "b638a944-21fb-4ff0-b1c5-29221991a533",
      "TaskIDs": [
        "497f6eca-6276-4993-bfeb-53cbbbba6f08"
      ],
      "Status": "queuing",
      "StartTime": "2019-08-24T14:15:22Z",
      "EndTime": "2019-08-24T14:15:22Z",
      "AcquiredConcurrency": 0,
      "LimitConcurrency": 0,
      "Canceled": true,
      "Tasks": [
        {
          "TaskID": "string",
          "URL": "string",
          "Status": "string"
        }
      ]
    }
  ],
  "TotalCount": 0,
  "PageSize": 0,
  "PageNumber": 0,
  "TotalPages": 0
}
{
  "Error": "string",
  "Code": 0
}
{
  "Error": "string",
  "Code": 0
}
{
  "Error": "string",
  "Code": 0
}