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

# List Phone Numbers

> List phone numbers in a workspace

## Request

```bash theme={null}
curl "https://app.orova.ai/api/phone-numbers?workspaceId=WORKSPACE_ID" \
  -H "x-api-key: YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "data": [
    {
      "_id": "phone_id",
      "number": "+1234567890",
      "status": "active",
      "assignmentType": "inbound",
      "assignedAgentId": "agent_id",
      "workspaceId": "WORKSPACE_ID"
    }
  ]
}
```
