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

# List People

> Retrieve a paginated list of people (customers/contacts) in your workspace.

## Method

`GET` `/v1/people`

## Query Parameters

<ParamField query="q" type="string">Optional free-text search (name, email, phone)</ParamField>
<ParamField query="limit" type="integer">Items per page (default 50, max 100)</ParamField>
<ParamField query="offset" type="integer">Number of items to skip (default 0)</ParamField>

## Headers

<ParamField header="Authorization" type="string" required>Bearer token (e.g. <code>Authorization: Bearer YOUR\_API\_KEY</code>)</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.voyantcloud.com/v1/people?q=ana&limit=20&offset=0" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const res = await fetch("https://api.voyantcloud.com/v1/people?q=ana&limit=20", {
    headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` },
  })
  const data = await res.json()
  ```

  ```python Python theme={null}
  import os, requests
  resp = requests.get(
    "https://api.voyantcloud.com/v1/people",
    params={"q": "ana", "limit": 20},
    headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"},
  )
  data = resp.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": [
      {
        "id": "p_123",
        "firstName": "Ana",
        "lastName": "Ionescu",
        "defaultEmail": "ana@example.com"
      }
    ],
    "meta": {
      "total": 1,
      "limit": 20,
      "offset": 0,
      "hasMore": false
    }
  }
  ```
</ResponseExample>
