GET
/
api
/
scrapers
curl --request GET \
  --url https://app.mrscraper.com/api/scrapers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 88683,
      "name": "My scraper 1",
      "urls": [
        "https://example.com/scrape-url"
      ],
      "scheduled": false,
      "schedule": null,
      "schedule_explanation": null,
      "created_at": "2022-11-20T11:54:52.000000Z",
      "updated_at": "2022-11-20T11:54:52.000000Z"
    },
    {
      "id": 88684,
      "name": "My scraper 2",
      "urls": [
        "https://example.com/scrape-url-alt"
      ],
      "scheduled": true,
      "schedule": "15 1 * * *",
      "schedule_explanation": "At 01:15 AM",
      "created_at": "2022-11-20T11:54:52.000000Z",
      "updated_at": "2022-11-20T11:54:52.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

You can retrieve your token by visiting the API Tokens section inside your profile page or see https://docs.mrscraper.com/documentation/api-token for the details.

Query Parameters

page
integer

The page number to retrieve in paginated results.

per_page
integer

The number of scraper items per page to be returned from the API call.

Response

200 - text/plain

The response is of type string.