Pricing & Credits
Simple credit-based pricing. Know exactly what you're paying for.
Per-Request Pricing
AnakinScraper uses a simple credit-based system. Each API request consumes credits based on the type of operation performed.
| Request Type | Credits | Description |
|---|---|---|
| URL scrape | 1 credit | HTML extraction with optional JS rendering |
| + AI Summary | +1 credit | AI-generated summary of the page content |
| + AI JSON extraction | +2 credits | AI-structured data extraction |
| Batch scraping | 1 credit × URLs | 1 credit per URL in the batch (add-ons apply per URL) |
| Crawl | 1 credit × pages | Multi-page crawl, charged upfront based on max pages |
| Map (URL discovery) | 1 credit | Discover all URLs on a domain |
| Search API | 3 credits | Web search with full content extraction |
| Agentic Search | 10 + 1/URL | 10 base + 1 credit per URL scraped during research |
| Browser Connect | 1 credit / 2 min | Live CDP browser session, billed per 2-minute interval (rounded up) |
| Holocron action | Varies | Credit cost shown per action in the catalog — deducted upfront, refunded on failure |
Plans
Starter (Free)
- 500 credits
- Basic scraping
- API access
Pro ($9/month)
- 3,000 credits/month
- Priority support
- Advanced features
- 99.9% uptime SLA
Scale ($29/month)
- 12,000 credits/month
- Priority support
- All API endpoints
- 99.9% uptime SLA
Enterprise (Custom)
- Unlimited credits
- Dedicated support
- Custom integrations
- SLA guarantees
Contact sales for Enterprise pricing.
Credit Usage Examples
Basic HTML Scrape
curl -X POST https://api.anakin.io/v1/scrape \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Cost: 1 credit
URL Scrape with JS Rendering
curl -X POST https://api.anakin.io/v1/scrape \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "useBrowser": true}'Cost: 1 credit (same as basic — JS rendering has no additional cost)
Batch Scraping (10 URLs)
curl -X POST https://api.anakin.io/v1/scrape/batch \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"urls": ["url1", "url2", ...], "useBrowser": true}'Cost: 10 credits (1 credit × 10 URLs)
URL Scrape with AI Summary
curl -X POST https://api.anakin.io/v1/scrape \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown", "summary"]}'Cost: 2 credits (1 base + 1 for AI summary)
URL Scrape with AI JSON Extraction
curl -X POST https://api.anakin.io/v1/scrape \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown", "json"]}'Cost: 3 credits (1 base + 2 for AI JSON extraction)
Crawl (10 pages)
curl -X POST https://api.anakin.io/v1/crawl \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "maxPages": 10}'Cost: 10 credits (1 credit × 10 pages)
Map (URL Discovery)
curl -X POST https://api.anakin.io/v1/map \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Cost: 1 credit