Enrich Company
POST/enrich5 credits

Enrich Company

Full profile enrichment for a known company. Runs ProfileEnrichmentService with live Google Search grounding (always on for paid API calls), direct website scrape, tech fingerprint, LinkedIn/jobs/GitHub passes, and citation-guarded founder/funding updates. Creates a pending stub if no row exists. Use fast:true for cache-only; force:true to re-run within the 7-day freshness window. Requires Pro Lite or higher. Pair with GET /startups for discovery — enrich deepens a row you already found.

POSThttps://www.startuphub.ai/api/v1/enrich

Request

curl -X POST "https://www.startuphub.ai/api/v1/enrich" \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"name": "Anthropic", "website": "https://anthropic.com", "force": true}'

Parameters

namestringrequired

Company name

websitestringoptional

Company website (improves matching)

linkedin_urlstringoptional

Company LinkedIn profile URL

forcebooleanoptional

Re-run the full grounded pipeline even if enriched within 7 days

fastbooleanoptional

Return cached row only; never run the pipeline

Response

json
{
  "data": {
    "id": "uuid",
    "name": "Anthropic",
    "slug": "anthropic",
    "description": "Anthropic is an AI safety...",
    "website": "https://anthropic.com",
    "total_funding": 15000000000,
    "employee_count": 1500
  },
  "source": "pipeline",
  "enriched": true,
  "pipeline_ran": true,
  "last_enriched_at": "2026-07-12T10:00:00.000Z"
}

Errors

403Requires Pro Lite or higher plan