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

# List your generations (all statuses), newest first



## OpenAPI

````yaml /api/pixio-api.json get /generations
openapi: 3.1.0
info:
  title: Pixio API
  version: 1.0.0
  description: >-
    Generate AI media, manage assets, inspect credits, and run saved workflows.
    Typical flow: GET /models -> GET /params -> POST /uploads -> POST /generate
    -> poll GET /generations/{id}. See GET /guide for the full protocol.
servers:
  - url: https://beta.pixio.myapps.ai/api/v1
security:
  - ApiKey: []
paths:
  /generations:
    get:
      summary: List your generations (all statuses), newest first
      parameters:
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - processing
              - succeeded
              - failed
        - name: type
          in: query
          schema:
            type: string
            enum:
              - image
              - video
              - audio
              - 3d
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: '{ data: Generation[], page, limit, total, hasMore }'
components:
  securitySchemes:
    ApiKey:
      type: http
      scheme: bearer
      description: Pixio API key

````