cURL
curl --request GET \ --url https://api.olostep.com/v1/scrapes/{scrape_id} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "object": "<string>", "created": 123, "metadata": {}, "url_to_scrape": "<string>", "result": { "html_content": "<string>", "markdown_content": "<string>", "json_content": "<string>", "screenshot_hosted_url": "<string>", "html_hosted_url": "<string>", "markdown_hosted_url": "<string>", "links_on_page": [ "<string>" ], "page_metadata": { "status_code": 123, "title": "<string>" }, "size_exceeded": true } }
Can be used to retrieve response for a scrape.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Unique identifier for the scrape to be retrieved.
Successful response with the scrape result.
Scrape ID
The kind of object. "scrape" for this endpoint.
Created epoch
User-defined metadata.
The URL that was scraped.
Show child attributes
Content from parser
If size of content exceeds the limit. If yes, use hosted S3 urls to get content.