Quick Start

Get up and running with AnakinScraper in minutes

Quick Start

Products


Base URL

https://api.anakin.io/v1

Authentication

Authenticate every request with the X-API-Key header:

X-API-Key: your_api_key

Get your API key from the Dashboard. If you don't have an account yet, sign up here.


Response Codes

StatusDescription
200Request succeeded
202Job accepted (async — poll for results)
400Invalid request parameters
401Missing or invalid API key
402Plan upgrade required
404Job not found
429Rate limit exceeded — slow down requests
5xxServer error — retry after a short delay

Make your first request

curl -X POST https://api.anakin.io/v1/url-scraper \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://example.com"
  }'

Response:

202 Accepted
{
  "jobId": "job_abc123xyz",
  "status": "pending"
}

Use the returned jobId to poll for results with GET /v1/url-scraper/{jobId}. See Get Job Status for the full response format.