> ## 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.

# Get a generated asset



## OpenAPI

````yaml /api-reference/openapi.json get /v1/assets/{assetId}
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/assets/{assetId}:
    get:
      tags:
        - Assets
      summary: Get a generated asset
      operationId: getAsset
      parameters:
        - name: assetId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Generated asset resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Asset'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
      security:
        - bearerApiKey: []
components:
  schemas:
    Asset:
      type: object
      required:
        - object
        - id
        - type
        - generationType
        - generationId
        - rendererKind
        - name
        - render
        - createdAt
        - updatedAt
      properties:
        object:
          const: asset
        id:
          type: string
        type:
          enum:
            - preview_image
            - glb
            - pano
        generationType:
          enum:
            - world
            - model
            - null
        generationId:
          type:
            - string
            - 'null'
        rendererKind:
          enum:
            - scene3d
            - canvas2d
        name:
          type: string
        render:
          type: object
          required:
            - kind
            - urls
          properties:
            kind:
              type:
                - string
                - 'null'
            urls:
              type: object
              additionalProperties: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    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
  responses:
    Unauthorized:
      description: Missing, malformed, inactive, or revoked API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    NotFound:
      description: The requested API resource was not found.
      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.

````