GET
/
api
/
scraping-runs
/
html
/
{scraping_run_id}
curl --request GET \
  --url https://app.mrscraper.com/api/scraping-runs/html/{scraping_run_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 12,
    "scraper_id": 88683,
    "status": "succeeded",
    "results": [
      {
        "id": 1,
        "scraper_id": 88683,
        "scraping_run_id": 12,
        "scraper_name": "My scraper 1",
        "scraped_url": "https://example.com/scrape-url",
        "status": "succeeded",
        "content": "<page_html>",
        "created_at": "2022-11-20T11:54:52.000000Z",
        "updated_at": "2022-11-20T11:54:52.000000Z"
      }
    ],
    "created_at": "2022-11-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.

Path Parameters

scraping_run_id
integer
required

The scraping run's ID.

Response

200 - text/plain

The response is of type object.