Get All Results
Retrieve all scraping results with data, status, token usage, and file paths using the MrScraper API, with sorting, filtering, and date ranges.
This endpoint returns all scraping results, including data, status, token usage, and file paths, with options for sorting, filtering, and date ranges.
Note
Use the Platform API Server (https://api.app.mrscraper.com) host when calling this endpoint.
Authorization
apiKey In: header
Query Parameters
Sort entity by field name
ASC || DESC
Number of entities in one page
The page where you are
Search all entity column value
Column name for filter startAt and endAt
Filter startAt by dateRangeColumn
Filter endAt by dateRangeColumn
Response Body
application/json
application/json
curl -X GET "https://api.app.mrscraper.com/api/v1/results?sortField=updatedAt&sortOrder=DESC&pageSize=10&page=1"{
"message": "Successful fetch",
"data": [
{
"createdAt": "2025-11-11T09:50:09.722Z",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"userId": "2c4a230c-5085-4924-a3e1-25fb4fc5965b",
"scraperId": "6695bf87-aaa6-46b0-b1ee-88586b222b0b",
"type": "AI",
"url": "http://example.com",
"status": "Finished",
"error": "string",
"tokenUsage": 5,
"runtime": 0,
"data": {},
"htmlPath": "string",
"recordingPath": "string",
"screenshotPath": "string",
"dataPath": "string"
}
],
"meta": {
"page": 1,
"pageSize": 10,
"total": 1,
"totalPage": 1
}
}{
"message": "Unauthorized access",
"error": "Unauthorized"
}AI Scraper Response
Learn the response structure of the AI Scraper API, from the standard wrapper to the agent-specific data field, and how to interpret the results.
Get a Detailed Result GET
Retrieve detailed information for a single scraping result by its unique identifier with the MrScraper API, including data, status, and token usage.