Welcome to the Cornect API
The Cornect API lets you work with our B2B company data programmatically — search companies, look up company detail, create and download exports, and check your workspace's credit balance. Everything is JSON over HTTPS, authenticated with an API token.
What you can do#
The public API exposes six endpoints across three areas:
- Companies — search the index with rich filters, and fetch full detail for any company by id.
- Exports — create an export job from a search or a saved list, poll its status, and download the result.
- Credits — read your workspace's current credit balance and recent transactions.
Base URL#
https://api.cornect.io/api/v1
All endpoints are served under /api/v1. Requests must be HTTPS and carry an Authorization: Bearer cornect_… header.
Versioning#
The current version is v1. Additive changes (new fields, new endpoints) can land within v1 without notice, so write clients that tolerate unknown response fields. Breaking changes ship under a new version prefix — see the versioning guide.
New to the API?
Start with Authentication to mint a token, then run through the Quickstart.