Skip to main content
GET
/
contacts
List contacts
curl --request GET \
  --url https://productlane.com/api/v2/contacts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "image_url": "<string>",
      "company_id": "<string>",
      "is_subscribed": true,
      "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
email
string

Case-insensitive substring match.

name_contains
string
Required string length: 1 - 255
company_id
string
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