GET
/
api
/
results
curl --request GET \
  --url https://app.mrscraper.com/api/results \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

page
integer

The page number to retrieve in paginated results.

per_page
integer

The number of items per page.

Response

200 - application/json
data
object[]