Result

Get All Results

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 V3 Platform API Server (https://api.app.mrscraper.com) host when calling this endpoint.

GET
/api/v1/results
x-api-token<token>

In: header

Query Parameters

sortFieldstring

Sort entity by field name

sortOrderstring

ASC || DESC

pageSizenumber

Number of entities in one page

pagenumber

The page where you are

search?string

Search all entity column value

dateRangeColumn?string

Column name for filter startAt and endAt

startAt?string

Filter startAt by dateRangeColumn

endAt?string

Filter endAt by dateRangeColumn

Response Body

application/json

application/json

application/json

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": "string",
      "htmlPath": "string",
      "recordingPath": "string",
      "screenshotPath": "string",
      "dataPath": "string"
    }
  ],
  "meta": {
    "page": 1,
    "pageSize": 10,
    "total": 1,
    "totalPage": 1
  }
}
{
  "message": "Invalid or missing API token",
  "error": "Unauthorized",
  "statusCode": 401
}
{
  "message": "You do not have permission to access this resource",
  "error": "Forbidden",
  "statusCode": 403
}
{
  "message": "Validation failed",
  "error": "Unprocessable Entity",
  "statusCode": 422
}
{
  "message": "An unexpected error occurred",
  "error": "Internal Server Error",
  "statusCode": 500
}