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

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

result_id
integer
required

The result's ID.

Response

200 - application/json
data
object