---
title: "List Companies"
method: GET
path: "/api/v3/crm/{integration_id}/companies"
tags: ["CRM Companies"]
---

# List Companies

`GET /api/v3/crm/{integration_id}/companies`

Get a paginated list of companies from the CRM.

## Properties

Request specific properties (including custom properties) using the `properties` parameter:
```
GET /crm/{integration_id}/companies?properties=name,domain,my_custom_property
```

**Default properties returned:** name, domain, description, phone, address, city, state, zip,
country, website, industry, numberofemployees, annualrevenue, lifecyclestage, hs_lead_status,
hubspot_owner_id, createdate, hs_lastmodifieddate

## Associations

Include associated objects using the `associations` parameter:
```
GET /crm/{integration_id}/companies?associations=contacts,deals
```

Valid association types: `contacts`, `deals`, `tickets`, `notes`, `tasks`, `meetings`, `calls`, `emails`

## Pagination

- Max 100 results per page
- Use `next_cursor` from response in subsequent requests

## Path parameters

- `integration_id` string, uuid, required — The CRM integration ID

## Query parameters

- `limit` integer — Number of results per page (max 100)
- `after` string, nullable — Pagination cursor from previous response
- `properties` string, nullable — Comma-separated list of properties to return (e.g., 'name,domain,my_custom_prop')
- `associations` string, nullable — Comma-separated list of associated objects to include (e.g., 'contacts,deals')

## Response `200`

Successful Response

- CompanyListResponse — API response for listing companies.
  - `results` CompanyResponse[], required
    - `id` string, required
    - `properties` object, required
    - `created_at` string, nullable
    - `updated_at` string, nullable
  - `has_more` boolean
  - `next_cursor` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/nationgraph/apis/nationgraph-api.md) · [All operations](https://skmtc.net/nationgraph/apis/nationgraph-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nationgraph/nationgraph-api/revisions/85804e68d86d/schema)
