All docsNextAPI Reference
Guide / Getting started
Get scraping in two minutes
Create an account, grab an API key, and make your first request. No proxy setup, no credit card for the free tier.
1. Create your API key
Sign up, then open Dashboard → API Keys and create a key. Keys look like ac_live_.... Keep them server-side.
2. Make your first scrape
Turn any URL into clean JSON with a single call.
curl -X POST https://api.arrowcrawl.com/v1/scrape \
-H "Authorization: Bearer ac_live_..." \
-H "Content-Type: application/json" \
-d '{ "url": "https://example.com", "formats": ["markdown", "json"] }'3. Or use the Python SDK
pip install arrowcrawlfrom arrowcrawl import ArrowCrawl
ac = ArrowCrawl(api_key="ac_live_...")
result = ac.scrape("https://www.amazon.in/dp/B09V3KXJPB",
schema={"title": "string", "price": "number"})
print(result.json)Credits
One successful request costs one credit, flat. No proxy fees, no CAPTCHA surcharges, no headless add-ons. Failed requests are free. See pricing.