> ## 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 Meta WhatsApp templates

> Retrieve live approved message templates from your connected Meta WhatsApp Business Account

Queries Meta Graph API live to fetch all pre-approved WhatsApp message templates associated with your tenant's WhatsApp Business Account (WABA).

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

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

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

### Response

```json theme={null}
[
  {
    "name": "call_summary_feedback",
    "status": "APPROVED",
    "language": "en_US",
    "category": "UTILITY",
    "components": [
      {
        "type": "BODY",
        "text": "Hello {{1}}, thank you for speaking with our AI specialist today. Please find your call summary attached."
      }
    ]
  }
]
```
