AI StudioAI Crawl
AI Crawl
Intelligent website crawling guided by natural language
AI Crawl combines Spider's high-performance crawler with AI understanding. Describe what you want to find, and the AI will guide the crawler to discover relevant pages, filter content, and extract structured data.
POST
/ai/crawlFull API docsCapabilities
Natural language crawl guidance
Smart page relevance filtering
Automatic depth optimization
Structured data extraction
Concurrent crawling at scale
JavaScript rendering support
Example prompts
Find blog posts
prompt: "Crawl all blog posts and extract titles, dates, and summaries"
Product discovery
prompt: "Find all product pages with prices under $100"
Documentation scraping
prompt: "Collect all API documentation pages with code examples"
News aggregation
prompt: "Find recent news articles about artificial intelligence"
Parameters
| Name | Type | Status | Description |
|---|---|---|---|
| url | string | Required | Starting URL to crawl |
| prompt | string | Required | Natural language crawl instructions |
| limit | number | Optional | Maximum pages to crawl (default: 25) |
| depth | number | Optional | Maximum crawl depth |
| return_format | string | Optional | Output format: markdown, html, text, or raw. Defaults to empty (only extracted data returned) |
Code examples
cURL
curl -X POST https://api.spider.cloud/ai/crawl \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com",
"prompt": "Find all product pages and extract names and prices",
"limit": 50
}'Get started
Ready to use AI Crawl?
Start extracting data with natural language prompts. No complex selectors or scripts needed.