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 |
|---|---|---|
| Basic scrape (HTML) | 1 credit | Raw HTML extraction, no rendering |
| JavaScript rendering | 5 credits | Full browser rendering for SPAs and dynamic content |
| Batch scraping | Credits × URLs | Same pricing as above multiplied by items in batch |
| AI structured extraction | 5 credits | Schema-based JSON extraction with AI |
| Search API | 5 credits | Web search with full content extraction |
| Agentic Search | 10 credits | Multi-stage automated research pipeline |
Plans
Starter (Free)
- 500 credits
- Basic scraping
- API access
Pro ($9/month)
- 3,000 credits/month
- Priority support
- Advanced features
- 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
JavaScript 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: 5 credits
AI Structured 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", "generateJson": true, "schema": {...}}'Cost: 5 credits
Batch Scraping (10 URLs with browser)
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: 50 credits (5 credits × 10 URLs)