Crawl
Endpoints
Start Crawl
{
"url": "https://coinmarketcap.com",
"include_paths": ["currencies/", "exchanges/", "nft/"],
"exclude_paths": ["login/", "settings/", "api/"],
"max_depth": 2,
"ignore_sitemap": true,
"limit": 10,
"allow_backward_links": true,
"allow_external_links": true,
"scrape_options": {
"formats": ["markdown", "html", "raw_html", "links", "screenshot", "extract"],
"headers": { "Authorization": "Bearer XYZ" },
"include_selectors": [".protocol-details", ".market-data", ".exchange-info"],
"exclude_selectors": [".advertisement", ".user-menu"],
"main_only_content": true,
"wait_for": 2000,
"timeout": 30000,
"extract": {
"schema": {
"coin_name": "string",
"price_usd": "number",
"market_cap": "number",
"volume_24h": "number",
"change_24h": "number"
},
"prompt": "Extract cryptocurrency market data including price, market cap, and 24h volume."
}
},
"callback_url": "https://api.yourservice.com/crypto-webhook"
}Get Crawl Status
Webhook Events
Error Responses
Last updated