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

# List API-generated worlds



## OpenAPI

````yaml /api-reference/openapi.json get /v1/worlds
openapi: 3.1.0
info:
  title: Mint Public API
  version: 0.1.0-alpha
  description: REST API for Mint World and 3D Model generation workflows.
  license:
    name: Proprietary
    url: https://docs.mint.gg/terms-of-service
servers:
  - url: https://api.mint.gg
    description: Production
  - url: https://api.dev.mint.gg
    description: Development
  - url: http://api.mint.localhost
    description: Local development
security: []
tags:
  - name: Account
    description: Developer account and health endpoints.
  - name: Generation
    description: Long-running World, 3D Model, and model optimization operations.
  - name: Conversion
    description: Long-running 3D Model format conversion operations.
  - name: Assets
    description: Generated World, 3D Model, and asset reads.
paths:
  /v1/worlds:
    get:
      tags:
        - Assets
      summary: List API-generated worlds
      operationId: listWorlds
      parameters:
        - $ref: '#/components/parameters/ListLimit'
        - $ref: '#/components/parameters/ListCursor'
      responses:
        '200':
          description: Paginated worlds generated by the authenticated API project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorldList'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
      security:
        - bearerApiKey: []
components:
  parameters:
    ListLimit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
      description: Maximum number of resources to return.
    ListCursor:
      name: cursor
      in: query
      required: false
      schema:
        type: string
      description: Cursor returned from the previous page's pagination.nextCursor.
  schemas:
    WorldList:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/World'
        pagination:
          $ref: '#/components/schemas/Pagination'
    World:
      type: object
      required:
        - object
        - id
        - name
        - status
        - assetStage
        - operation
        - mintUrl
        - assets
      properties:
        object:
          const: world
        id:
          type: string
        name:
          type:
            - string
            - 'null'
        status:
          type:
            - string
            - 'null'
        assetStage:
          enum:
            - preview
            - final
            - null
        operation:
          $ref: '#/components/schemas/PublicResourceOperation'
        mintUrl:
          type: string
          format: uri
        assets:
          oneOf:
            - $ref: '#/components/schemas/WorldAssets'
            - type: 'null'
        createdAt:
          type:
            - string
            - 'null'
          format: date-time
        updatedAt:
          type:
            - string
            - 'null'
          format: date-time
    Pagination:
      type: object
      required:
        - nextCursor
        - hasMore
      properties:
        nextCursor:
          type:
            - string
            - 'null'
        hasMore:
          type: boolean
    Problem:
      type: object
      required:
        - type
        - title
        - status
      properties:
        type:
          type: string
          format: uri-reference
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        instance:
          type: string
          format: uri-reference
    PublicResourceOperation:
      type: object
      properties:
        workflowStage:
          type:
            - string
            - 'null'
        lastError:
          type:
            - string
            - 'null'
    WorldAssets:
      type: object
      required:
        - caption
        - colliderMeshUrl
        - panoUrl
        - previewImageUrl
        - radUrl
        - spzUrls
        - thumbnailUrl
      properties:
        caption:
          type:
            - string
            - 'null'
        colliderMeshUrl:
          type:
            - string
            - 'null'
          format: uri
        panoUrl:
          type:
            - string
            - 'null'
          format: uri
        previewImageUrl:
          type:
            - string
            - 'null'
          format: uri
        radUrl:
          type:
            - string
            - 'null'
          format: uri
        spzUrls:
          type:
            - object
            - 'null'
          additionalProperties:
            type: string
            format: uri
        thumbnailUrl:
          type:
            - string
            - 'null'
          format: uri
  responses:
    BadRequest:
      description: Request validation failed.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Missing, malformed, inactive, or revoked API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    TooManyRequests:
      description: Request was rate limited.
      headers:
        Retry-After:
          schema:
            type: string
          description: Seconds to wait before retrying.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    ServiceUnavailable:
      description: Mint could not reach the backend service.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    bearerApiKey:
      type: http
      scheme: bearer
      description: Mint API key sent as a Bearer token.

````