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

# Search Numbers

> Search available phone numbers in the shared pool

Browse available numbers in the shared pool.

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "provisioned": true,
    "counts": {
      "available": 50,
      "assigned": 200,
      "reserved": 10
    },
    "available": ["+919876543210", "+919876543211"],
    "allocated": []
  }
}
```

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/dialer/pool \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const pool = await client.dialer.numbers.search();
  ```

  ```python Python theme={null}
  pool = client.dialer.numbers.search()
  ```
</RequestExample>
