Results
List all results
This endpoint allows you to get a list of all your scraping results.
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 items per page.
Response
200 - application/json
Example:
[
{
"id": 2,
"scraper_id": 88683,
"scraping_run_id": 12,
"scraper_name": "My scraper 1",
"scraped_url": "https://example.com/scrape-url",
"status": "succeeded",
"content": "<your-extracted-data>",
"created_at": "2022-11-20T11:54:52.000000Z",
"updated_at": "2022-11-20T11:54:52.000000Z"
},
{
"id": 1,
"scraper_id": 88683,
"scraping_run_id": 12,
"scraper_name": "My scraper 1",
"scraped_url": "https://example.com/scrape-url",
"status": "succeeded",
"content": "<your-extracted-data>",
"created_at": "2022-10-20T11:54:52.000000Z",
"updated_at": "2022-10-20T11:54:52.000000Z"
}
]