Scrapers
Run a scraper
This endpoint allows you to tell a scraper to start a scraping.
POST
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.
Path Parameters
The scraper's ID.
Body
application/json
The URLs to scrape if you want to override default ones.
Example:
[
"https://example.com/page-1",
"https://example.com/page-2"
]
Response
200 - application/json
Example:
[
{
"id": 1,
"scraper_id": 88683,
"scraping_run_id": 1,
"scraper_name": "My scraper 1",
"scraped_url": "https://example.com/page-1",
"status": "running",
"content": null,
"created_at": "2022-11-20T11:54:52.000000Z",
"updated_at": "2022-11-20T11:54:52.000000Z"
},
{
"id": 2,
"scraper_id": 88683,
"scraper_name": "My scraper 1",
"scraped_url": "https://example.com/page-2",
"status": "queued",
"content": null,
"created_at": "2022-10-20T11:54:52.000000Z",
"updated_at": "2022-10-20T11:54:52.000000Z"
}
]