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

# List Templates

List all SMS message templates.

<ParamField query="page" type="integer">
  Page number (default: 1)
</ParamField>

<ParamField query="page_size" type="integer">
  Items per page (default: 20, max: 100)
</ParamField>

<ParamField query="category" type="string">
  Filter by category
</ParamField>

<ParamField query="search" type="string">
  Search term
</ParamField>

## Success Response (200)

<ResponseExample>
  ```json theme={null}
  {
    "count": 50,
    "next": "https://mifumosms.mifumolabs.com/api/messaging/templates/?page=2",
    "previous": null,
    "results": [
      {
        "id": "550e8400-e29b-41d4-a716-446655440000",
        "name": "Welcome Message",
        "category": "TRANSACTIONAL",
        "language": "en",
        "message": "Welcome {{name}}! Thank you for joining us.",
        "variables": ["name"],
        "is_active": true,
        "usage_count": 150,
        "created_at": "2025-11-01T10:00:00Z",
        "updated_at": "2025-11-27T10:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>
