> ## 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.

# Get WhatsApp webhook details

> Retrieve webhook callback URL and verify token for Meta integration

Fetches the webhook configuration details needed to configure webhook callbacks in the Meta Developer App portal.

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

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

  response = requests.get(
      "https://api.agentic-os.com/api/v1/whatsapp/webhook-details",
      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/webhook-details",
    {
      method: "GET",
      headers: { Authorization: `Bearer ${API_KEY}` },
    },
  );
  const data = await response.json();
  console.log(data);
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "webhookUrl": "https://api.agentic-os.com/api/v1/whatsapp/webhook",
  "verifyToken": "wa_verify_sec_990e8400e29b41d4a716446655440000"
}
```
