Status Check
Endpoint
GET https://api.yetanotherapi.com/web-scrapper/{request_id}Headers
Header
Required
Description
Path Parameters
Parameter
Type
Description
Response
Success Response (HTTP 200)
{
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://example.com",
"status": "completed",
"timestamp": 1635545600,
"content": {
"text": "Extracted text content...",
"markdown": "# Extracted markdown content...", // If markdown was requested
"meta": {
"title": "Page Title",
"description": "Meta description..."
},
"links": [
{
"text": "Link text",
"url": "https://example.com/link",
"type": "internal"
}
],
"images": [
{
"url": "https://example.com/image.jpg",
"alt": "Image description"
}
]
},
"llm_output": { // Only present if LLM processing was requested
// Structured JSON output based on the prompt
}
}Processing Response (HTTP 200)
Error Response (HTTP 4XX/5XX)
Response Fields
Field
Type
Description
Possible Status Values
Status
Description
Example Curl Request
Error Handling
Notes
Last updated