Skip to main content
GET
/
accounts
cURL
curl --request GET \
  --url https://api.usepylon.com/accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "channels": [
        {
          "channel_id": "<string>",
          "is_primary": true,
          "source": "<string>"
        }
      ],
      "created_at": "<string>",
      "crm_settings": {
        "details": [
          {
            "id": "<string>",
            "source": "<string>"
          }
        ]
      },
      "custom_fields": {},
      "domain": "<string>",
      "domains": [
        "<string>"
      ],
      "external_ids": [
        {
          "external_id": "<string>",
          "label": "<string>"
        }
      ],
      "id": "<string>",
      "latest_customer_activity_time": "<string>",
      "name": "<string>",
      "owner": {
        "email": "<string>",
        "id": "<string>"
      },
      "primary_domain": "<string>",
      "tags": [
        "<string>"
      ],
      "type": "<string>"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "has_next_page": true
  },
  "request_id": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer

Query Parameters

cursor
string

The cursor to use for pagination.

limit
integer<int64>
required

The number of accounts to fetch. Defaults to 100. Must be greater than 0 and less than 1000.

Response

data
object[]

The data payload of the response.

pagination
object
request_id
string

The request ID for tracking.