Scraper apiGeneratedCrawl

Start a crawl job

Crawl a website starting from a seed URL up to a given depth and page limit

POST
/v1/crawl

Authorization

APIKeyHeader
X-Api-Key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/v1/crawl" \  -H "Content-Type: application/json" \  -d '{    "url": "http://example.com"  }'
{
  "job_id": "453bd7d7-5355-4d6d-a38e-d9e7eb218c3f",
  "url": "string",
  "status": "queued",
  "status_url": "string",
  "estimated_pages": 0
}
Empty
Empty
Empty
Empty
Empty