Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
companies
List companies
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/companies \
  --header 'api_access_token: <api-key>'
{
  "data": [
    {
      "id": 10,
      "name": "Acme Corp",
      "domain": "acme.com",
      "description": "Global leader in widgets.",
      "custom_attributes": {
        "industry": "Technology",
        "annual_revenue": 500000
      },
      "contacts_count": 5,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

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

Authorizations

api_access_token
string
header
required

API access token for authentication. Obtain from your Voxys Connect profile settings.

Path Parameters

account_id
integer
required

The numeric ID of the account.

Query Parameters

page
integer
default:1

Page number for pagination.

sort
enum<string>
default:created_at

Sort field.

Available options:
name,
created_at,
updated_at

Response

List of companies.

data
object[]
meta
object