Web Scraping Crawl website API
Crawl a website and get clean text content from up to 10 pages in one normalized response - ideal for feeding sites into LLMs and search indexes.
Try it
Make your first request
{
"found": true,
"data": {
"items": [
{
"url": "https://www.example.com",
"title": "Example - Build something great",
"text": "Example is the platform teams use to ship faster…"
},
{
"url": "https://www.example.com/pricing",
"title": "Pricing - Example",
"text": "Simple plans for teams of every size…"
}
]
}
}interface WebCrawlResponse {
data: {
items: {
domain: string;
text: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/web.crawl \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"url":"https://www.example.com"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.example.com"The website URL or domain to crawl. |
| limit | integer | Maximum number of results to return (1-10, default 10). You are billed per result returned, so a lower limit costs less. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.items | array | |
| data.items[].url | string | "https://www.example.com" |
| data.items[].title | string | "Example - Build something great" |
| data.items[].text | string | "Example is the platform teams use to ship faster…" |
| Price | ||
| Price per request (ceiling) | USD | $0.0347 |
| Price /1k results | USD | $3.15 |
FAQ
About the Web Scraping Crawl website API
The AnyAPI Web Scraping Crawl website API returns Web Scraping crawl website data as normalized JSON from one POST call to /v1/run/web.crawl. Crawl a website and get clean text content from up to 10 pages in one normalized response - ideal for feeding sites into LLMs and search indexes. AnyAPI returns one normalized schema whichever source serves it. It costs $3.15 per 1,000 results, and never more than $0.0347 for a single request, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Web Scraping crawl website calls through AnyAPI succeeded, with a median response time of 5.3 seconds across 1 measured calls.