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

# List Templates

> List SuperAgent templates visible to the authenticated user.

Templates marked ``visible_to_orgs`` are filtered out for callers
outside those orgs (e.g. ``scei_ar_assistant`` is hidden from non-SCEI
users).



## OpenAPI

````yaml /api-reference/openapi.json get /api/superagents
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/superagents:
    get:
      tags:
        - superagents
      summary: List Templates
      description: |-
        List SuperAgent templates visible to the authenticated user.

        Templates marked ``visible_to_orgs`` are filtered out for callers
        outside those orgs (e.g. ``scei_ar_assistant`` is hidden from non-SCEI
        users).
      operationId: list_templates_api_superagents_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Template Status](/api-reference/agents/template-status.md)
- [Get Template](/api-reference/superagents/get-template.md)
- [Resync Template](/api-reference/agents/resync-template.md)
- [List Subscriptions](/api-reference/webhooks/list-subscriptions.md)
- [Webhooks](/guides/webhooks.md)
