CAPI Docs
Get an API token

Get Company

GET/api/v1/companies/{company_id}

Fetch the full detail record for a single company by its id. The company_id is the stable identifier returned in search results.

Authentication#

Requires a token with the read scope, sent as Authorization: Bearer cornect_….

Request#

Path parameters:

NameTypeRequiredDescription
company_idstringYesThe company's stable id (e.g. the company_id from a search result).

Response#

json
{
  "company_id": "predictleads:acme.com",
  "name": "Acme Inc.",
  "domain": "acme.com",
  "industry": "Software",
  "employee_count": 320,
  "employee_range": "201-500",
  "country": "US",
  "city": "San Francisco",
  "description": "Acme builds…",
  "technologies": ["aws", "stripe", "segment"],
  "founded_year": 2014,
  "linkedin_url": "https://www.linkedin.com/company/acme",
  "funding_stage": "series_b",
  "funding_total_usd": 48000000,
  "last_funding_date": "2025-03-01"
}

Code samples#

curl -X GET https://api.cornect.io/api/v1/companies/predictleads:acme.com \
  -H "Authorization: Bearer cornect_your_token_here"

Errors#

See Errors for the full table. Codes you're most likely to see here:

CodeStatusWhen
404No company exists with that id.
429Rate limit exceeded (120/min).

Interactive reference#

Loading interactive reference…