> ## Documentation Index
> Fetch the complete documentation index at: https://docs.osis.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List contacts

> GET /api/v1/comms/contacts — search people on your line.

List contacts (people) associated with your workspace.

**Scope:** `comms_read`

## Request

```bash theme={null}
curl "https://osis.co/api/v1/comms/contacts?q=alex&limit=20" \
  -H "Authorization: Bearer $COMMS_API_KEY"
```

### Query parameters

<ParamField query="q" type="string">
  Search string (name, phone fragment, etc.).
</ParamField>

<ParamField query="limit" type="integer">
  Maximum number of contacts to return.
</ParamField>

## Response

```json theme={null}
{
  "contacts": [
    {
      "id": "ctc_…",
      "phone": "+12125550147",
      "name": "Alex"
    }
  ]
}
```
