Skip to main content
GET
/
companies
List companies
curl --request GET \
  --url https://productlane.com/api/v2/companies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "logo_url": "<string>",
      "domains": [
        "<string>"
      ],
      "size": 123,
      "revenue": 123,
      "status_id": "<string>",
      "status_name": "<string>",
      "tier_id": "<string>",
      "tier_name": "<string>",
      "owner": {
        "id": "<string>",
        "name": "<string>",
        "avatar_url": "<string>"
      },
      "external_ids": {
        "intercom": "<string>",
        "front": "<string>",
        "zendesk": "<string>",
        "hubspot": "<string>",
        "plain": "<string>",
        "productboard": "<string>",
        "slack_channel": "<string>"
      },
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "page": {
    "cursor": "<string>",
    "has_more": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://productlane.mintlify.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
Required range: 1 <= x <= 200
cursor
string
external_id
string

Matches an entry in the company's external_ids array.

domain
string

Matches an entry in the company's domains array.

name_contains
string
Required string length: 1 - 255
status_id
string
tier_id
string
size_gte
integer
Required range: x >= 0
size_lte
integer
Required range: x >= 0
revenue_gte
integer
Required range: x >= 0
revenue_lte
integer
Required range: x >= 0
created_after
string<date-time>
created_before
string<date-time>
updated_after
string<date-time>
updated_before
string<date-time>

Response

Successful response

data
object[]
required
page
object
required