crawling
Create Crawl Graph
Create a crawl graph by recursively crawling from a root URL
This endpoint crawls a website starting from the given URL up to the specified depth, extracting links and building a graph structure. Results are checkpointed to S3.
Requires permission: crawl:write
post/crawl/graph
Request body
Example request
{
"crawl_id": "crawl-123",
"depth": 3,
"engines": [
{
"engine_type": "scrapingbee"
}
],
"max_urls": 500,
"s3_bucket": "my-crawl-bucket",
"url": "https://example.com"
}Response
Successful Response