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

# List Customer Visible Templates

> Public template catalog — customer-facing.

Returns active, non-seed, non-archived templates. The customer JWT is
required so anonymous callers can't enumerate the catalog, but no scope
is applied (any authenticated customer sees the same list). `is_seed`
rows are dev-only fixtures and `archived_at` rows are retired.



## OpenAPI

````yaml /openapi.json get /challenges/templates
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /challenges/templates:
    get:
      tags:
        - Prop trading
      summary: List Customer Visible Templates
      description: |-
        Public template catalog — customer-facing.

        Returns active, non-seed, non-archived templates. The customer JWT is
        required so anonymous callers can't enumerate the catalog, but no scope
        is applied (any authenticated customer sees the same list). `is_seed`
        rows are dev-only fixtures and `archived_at` rows are retired.
      operationId: list_customer_visible_templates_challenges_templates_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                title: >-
                  Response List Customer Visible Templates Challenges Templates
                  Get

````