Crawl Job Status
Retrieve status and partial results for an active crawl job
GET
3 credits
/v1/scrape/crawl/{job_id}
curl "https://scrape.toolkitapi.io/v1/scrape/crawl/crawl_abc123" \
-H "X-API-Key: YOUR_KEY"
import httpx
resp = httpx.get(
"https://scrape.toolkitapi.io/v1/scrape/crawl/crawl_abc123",
)
print(resp.json())
const resp = await fetch("https://scrape.toolkitapi.io/v1/scrape/crawl/crawl_abc123", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"job_id": "crawl_abc123",
"status": "running",
"progress": 42
}
Try It Live
Live Demo
Response
Description
Retrieve status and partial results for an active crawl job
How to Use
1
1. Call this endpoint with the `job_id` from crawl start. 2. Continue polling until status is complete.
About This Tool
Returns real-time crawl progress and final results when complete.
Start using Crawl Job Status now
Get your free API key and make your first request in under a minute.