Status Check
This endpoint allows you to check the status and retrieve results of a previously submitted scraping request.
Endpoint
Headers
x-api-key
Yes
Your API authentication key
Path Parameters
request_id
string
The request ID returned from the scraper API
Response
Success Response (HTTP 200)
For completed requests:
Processing Response (HTTP 200)
For requests still processing:
Error Response (HTTP 4XX/5XX)
Common error codes:
E001: Invalid request format
E002: Request ID not found
E006: Storage service error
Response Fields
request_id
string
Unique identifier for the request
url
string
The URL that was scraped
status
string
Current status of the request
timestamp
number
Unix timestamp of last status update
content
object
Contains extracted content if status is "completed"
llm_output
object
Present only if LLM processing was requested
Possible Status Values
received
Request has been received but not yet processed
processing
Request is currently being processed
completed
Processing has completed successfully
failed
Processing failed with an error
Example Curl Request
Error Handling
If processing failed, the response will include error details:
Notes
Polling interval should be at least 5 minutes
Results are available for 15 hours after completion
Last updated
Was this helpful?