Bulk Domain Match
POST/startups/match1 credit

Bulk Domain Match

Batch-resolve a list of domains to startup records in one call - built for enriching a whole CRM export. Each result echoes the input domain and a matched flag. 1 credit per call.

POSThttps://www.startuphub.ai/api/v1/startups/match

Request

curl -X POST "https://www.startuphub.ai/api/v1/startups/match" \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"domains":["ramp.com","anthropic.com","notarealco.xyz"]}'

Parameters

domainsstring[]required

Array of domains or URLs to resolve (one call).

Response

json
{
  "results": [
    { "domain": "ramp.com", "matched": true, "name": "Ramp", "slug": "ramp", "website": "https://ramp.com", "total_funding": 1900000000 },
    { "domain": "anthropic.com", "matched": true, "name": "Anthropic", "slug": "anthropic", "website": "https://anthropic.com", "total_funding": 7000000000 },
    { "domain": "notarealco.xyz", "matched": false }
  ]
}

Errors

400Missing or empty domains array
401Invalid or missing API key
429Insufficient credits