
## List companies

`GET /v1/companies`

Returns a list of companies with filtering, sorting and auto-pagination.

## Parameters

| Parameter | Type | Default | Description |
|----------|-----|-----------|---------|
| `limit` | number | `50` | Number of records (up to 5000) |
| `offset` | number | `0` | Skip N records |
| `select` | string | — | Field selection: `?select=id,title,phone,industry` |
| `order` | object | — | Sorting: `?order[title]=asc` |
| `filter` | object | — | Filter by fields from `GET /v1/companies/fields`.<br>[Filtering syntax](/docs/filtering). Example: `?filter[industry]=IT` |

## Examples

### curl — personal key

```bash
curl "https://vibecode.bitrix24.com/v1/companies?limit=10&filter[industry]=IT&select=id,title,phone" \
  -H "X-Api-Key: YOUR_API_KEY"
```

### curl — OAuth application

```bash
curl "https://vibecode.bitrix24.com/v1/companies?limit=10&filter[industry]=IT&select=id,title,phone" \
  -H "X-Api-Key: YOUR_APP_KEY" \
  -H "Authorization: Bearer USER_SESSION_TOKEN"
```

### JavaScript — personal key

```javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/companies?limit=10&filter[industry]=IT', {
  headers: {
    'X-Api-Key': 'YOUR_API_KEY',
  },
})

const { success, data, meta } = await res.json()
console.log(`Found ${meta.total} companies`)
```

### JavaScript — OAuth application

```javascript
const res = await fetch('https://vibecode.bitrix24.com/v1/companies?limit=10&filter[industry]=IT', {
  headers: {
    'X-Api-Key': 'YOUR_APP_KEY',
    'Authorization': 'Bearer USER_SESSION_TOKEN',
  },
})

const { success, data, meta } = await res.json()
```

## Response fields

| Field | Type | Description |
|------|-----|---------|
| `data` | array | Array of companies (fields — see [Fields](/docs/entities/companies/fields)) |
| `meta.total` | number | Total number of records |
| `meta.hasMore` | boolean | More records available |

The card URL of any company from the `data` array is built from its `id`:

```
https://<portal>.bitrix24.com/crm/company/details/<id>/
```

`<portal>` is the Bitrix24 account domain. Access is restricted by the employee's permissions in Bitrix24.

## Response example

```json
{
  "success": true,
  "data": [
    {
      "id": 1,
      "title": "Acme Inc",
      "phone": "+15555555555",
      "email": "info@example.com",
      "assignedById": 1,
      "industry": "IT"
    }
  ],
  "meta": {
    "total": 1430,
    "hasMore": true
  }
}
```

## Error response example

403 — no scope:

```json
{
  "success": false,
  "error": {
    "code": "SCOPE_DENIED",
    "message": "This endpoint requires 'crm' scope"
  }
}
```

## Errors

| HTTP | Code | Description |
|------|-----|---------|
| 403 | `SCOPE_DENIED` | The API key does not have the `crm` scope |
| 401 | `TOKEN_MISSING` | The API key has no configured tokens |

Full list of common API errors — [Errors](/docs/errors).

## Known specifics

**The phone filter is not suitable for every search.** A value without an operator is compared against the whole stored string: a company whose number is stored as `+1 (202) 555-0123` matches that exact string, but not `12025550123`, because the plus sign, spaces, parentheses, and hyphens are part of the value. The filter also checks only the first number stored on a record: if both a work number and a mobile number are stored, searching by the mobile one returns an empty list. To find a company by phone number in any format and by any of its numbers, use [Duplicate search](/docs/duplicates).

**When to use search.** For compound conditions use `POST /v1/companies/search`. See [Search companies](/docs/entities/companies/search).

## See also

- [Search companies](/docs/entities/companies/search)
- [Create company](/docs/entities/companies/create)
- [Duplicate search](/docs/duplicates)
- [Filtering syntax](/docs/filtering)
- [Batch](/docs/batch)
- [Limits and optimization](/docs/optimization)
