OrbiCrawl AI

Guides

AI features

OrbiCrawl's AI runs on fast inference and is charged in credits per call. All results are stored on the lead for reuse and export.

Enrich a lead

Generates a company summary, category, industry, a 0–100 lead score and buying signals.

bash
curl -X POST https://api.orbicrawl.com/api/v1/ai/leads/LEAD_ID/enrich \
  -H "X-API-Key: oc_live_..."

Personalized outreach

bash
curl -X POST https://api.orbicrawl.com/api/v1/ai/leads/LEAD_ID/email \
  -H "X-API-Key: oc_live_..." -H "Content-Type: application/json" \
  -d '{ "product": "our cold-email deliverability tool", "tone": "concise" }'

ICP matching

Save one Ideal Customer Profile per workspace (PUT /icp), then score any lead against it:

bash
curl -X POST https://api.orbicrawl.com/api/v1/ai/leads/LEAD_ID/icp-match \
  -H "X-API-Key: oc_live_..."

Returns a fit score (0–100), a verdict (strong / medium / weak), the matched signals and a one-line rationale.

Describe what you want in plain English; the AI translates it into a structured filter and returns matching leads.

bash
curl -X POST https://api.orbicrawl.com/api/v1/ai/search \
  -H "X-API-Key: oc_live_..." -H "Content-Type: application/json" \
  -d '{ "query": "SaaS companies with a phone and quality above 80" }'

Dashboard assistant

POST /ai/assistant answers questions grounded in your workspace's own data (lead counts, top industries, how-to). Rate-limited rather than credit-charged.