Skip to main content

Endpoints


List companies

GET /api/v2/companies

Query parameters

string
Search by company name or domain (e.g. "Acme" or "acme.com").
number
Page number (default: 1).
number
Results per page (default: 10).

Response

array
Array of company objects.
number
Total matching companies.
number
Total pages at the current limit.
Response 200

Create a company

POST /api/v2/companies
string
required
Company domain (e.g. acme.com). Also used as name when name is omitted.
string
Company display name. Defaults to domain when not provided.
string
Full website URL (e.g. https://acme.com).
Example

Response

Response 201