This endpoint allows you to get a list of all your scrapers.
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.
The page number to retrieve in paginated results.
The number of scraper items per page to be returned from the API call.
The response is of type string
.
{
"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"
}
]
}