Skip to content
Meta Ad Library scraper is live, spy on any brand's adsExplore
Docs / Overview

Documentation

Everything you need to integrate ArrowCrawl into your application.

Quick Start

1. Install the SDK

pip install arrowcrawl

2. Scrape any URL

from arrowcrawl import ArrowCrawl

ac = ArrowCrawl(api_key="ac_live_...")

result = ac.scrape(
    url="https://www.amazon.in/dp/B09V3KXJPB",
    formats=["json"],
    schema={
        "title": "string",
        "price": "number",
        "rating": "number",
        "seller": "string"
    }
)

print(result.json)
# {"title": "...", "price": 1299, "rating": 4.1, "seller": "..."}

3. Or use cURL

curl -X POST https://api.arrowcrawl.com/v1/scrape \
  -H "Authorization: Bearer ac_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.flipkart.com/product/p/itm123",
    "formats": ["markdown", "json"],
    "schema": {"name": "string", "price": "number"}
  }'