OrbiCrawl AI

Reference

SDKs

Official, dependency-light clients live in the sdks/ directory of the repository. All authenticate with an API key and cover jobs, leads and export.

Languages

LanguagePathRuntime
Node.jssdks/node/orbicrawl.jsNode 18+ (native fetch)
Pythonsdks/python/orbicrawl.py3.8+ (stdlib only)
Gosdks/go/orbicrawl.go1.18+
PHPsdks/php/OrbiCrawl.php7.4+ (ext-curl)
Javasdks/java/OrbiCrawl.javaJDK 11+

Usage

from orbicrawl import OrbiCrawl

oc = OrbiCrawl(api_key="oc_live_...", base_url="https://api.orbicrawl.com")
job = oc.create_job(["https://acme.com"], name="Acme")
leads = oc.list_leads(job_id=job["id"])

Tip

Need another language? Every SDK is generated against the same OpenAPI spec — run your favourite OpenAPI generator against https://api.orbicrawl.com/api/v1/openapi.json.