Skip to main content
GET
/
companies
List companies
curl --request GET \
  --url https://backend.leadey.ai/v1/companies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "domain": "<string>",
      "industry": "<string>",
      "employeeCount": 123,
      "fundingStage": "<string>",
      "country": "<string>",
      "city": "<string>",
      "linkedinUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 1,
    "pageSize": 25,
    "totalCount": 134,
    "totalPages": 6
  }
}

Authorizations

Authorization
string
header
required

Your API key, created in the Leadey dashboard under Settings → API Keys. Send it as Authorization: Bearer leadey_sk_live_….

Query Parameters

page
integer
default:1

1-based page number.

Required range: x >= 1
pageSize
integer
default:25

Items per page (max 100).

Required range: 1 <= x <= 100

Free-text search across the resource's key fields.

industry
string

Filter by industry (substring match).

Response

A page of companies.

data
object[]
meta
object