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

# List WhatsApp phone numbers

> Retrieve registered WhatsApp sender phone numbers from Meta

Queries Meta to fetch all registered sender phone numbers associated with your connected WhatsApp Business Account.

<CodeGroup>
  ```bash curl theme={null}
  curl -X GET https://api.agentic-os.com/api/v1/whatsapp/fetch-numbers \
    -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.agentic-os.com/api/v1/whatsapp/fetch-numbers",
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  print(response.json())
  ```

  ```javascript Node theme={null}
  const response = await fetch(
    "https://api.agentic-os.com/api/v1/whatsapp/fetch-numbers",
    {
      method: "GET",
      headers: { Authorization: `Bearer ${API_KEY}` },
    },
  );
  const data = await response.json();
  console.log(data);
  ```
</CodeGroup>

### Response

```json theme={null}
[
  {
    "id": "105938472910293",
    "displayPhoneNumber": "+1 555-0199",
    "verifiedName": "Agentic OS Support",
    "qualityRating": "GREEN"
  }
]
```
