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
URL scrape1 creditHTML extraction with optional JS rendering
+ AI Summary+1 creditAI-generated summary of the page content
+ AI JSON extraction+2 creditsAI-structured data extraction
Batch scraping1 credit × URLs1 credit per URL in the batch (add-ons apply per URL)
Crawl1 credit × pagesMulti-page crawl, charged upfront based on max pages
Map (URL discovery)1 creditDiscover all URLs on a domain
Search API3 creditsWeb search with full content extraction
Agentic Search10 + 1/URL10 base + 1 credit per URL scraped during research
Browser Connect1 credit / 2 minLive CDP browser session, billed per 2-minute interval (rounded up)
Holocron actionVariesCredit 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