Pre-configured scrapers for popular sites. Hit one endpoint, get structured data.
POST /v1/cloud/fetch/{domain}/{path} runs a pre-configured scraper for the target domain.
curl -X POST \
https://api.crawlcrawl.com/v1/cloud/fetch/quotes.toscrape.com/v1/quote \
-H 'Authorization: Bearer crk_...' \
-H 'Content-Type: application/json'
GET /v1/cloud/scrapers returns the current catalog:
{
"scrapers": [
{
"domain": "quotes.toscrape.com",
"path_pattern": "/v1/quote",
"description": "Scrape a random quote",
"confidence_score": 0.95
},
{
"domain": "books.toscrape.com",
"path_pattern": "/v1/book",
"description": "Scrape book listings",
"confidence_score": 0.8
}
],
"pagination": {
"next": "/v1/cloud/scrapers?page=2"
}
}
Use /v1/cloud/fetch when a pre-built scraper exists for your target. Use /v1/crawls for arbitrary sites or full link-following.
If you need a scraper for a site not in the catalog, email hello@crawlcrawl.com.