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

# List templates (the menu)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/recipes
openapi: 3.1.0
info:
  title: AskEditor Platform API
  version: 1.0.0-preview
  description: >-
    The video editing API for AI agents. Every response is wrapped as { success,
    data }. Templates are addressed by id; synchronous templates return their
    result in the run call, queued templates resolve through the jobs envelope.
servers:
  - url: https://api.askeditor.com
security:
  - bearerAuth: []
paths:
  /v1/recipes:
    get:
      summary: List templates (the menu)
      operationId: listTemplates
      responses:
        '200':
          description: The live template catalog.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Template'
components:
  schemas:
    Template:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        summary:
          type: string
        priceCredits:
          type: number
        etaSeconds:
          type: number
        hasReviewGate:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````