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