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 TypeCreditsDescription
Basic scrape (HTML)1 creditRaw HTML extraction, no rendering
JavaScript rendering5 creditsFull browser rendering for SPAs and dynamic content
Batch scrapingCredits × URLsSame pricing as above multiplied by items in batch
AI structured extraction5 creditsSchema-based JSON extraction with AI
Search API5 creditsWeb search with full content extraction
Agentic Search10 creditsMulti-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)