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

# Tripo3D V2.5 image-to-3d



## OpenAPI

````yaml openapi-spec/tripo3d-v2.5-image-to-3d.json POST /v1/3d/generations
openapi: 3.1.0
info:
  description: >-
    Tripo3D V2.5 image-to-3d is Tripo AI's advanced model for converting 2D
    images into 3D models. Generate high-quality 3D assets from single images
    with impressive detail and accuracy.
  summary: API for Tripo3D V2.5 image-to-3d model
  title: Tripo3D V2.5 image-to-3d API
  version: 1.0.0
servers:
  - description: Model Verse API Server
    url: https://api.siray.ai
security: []
tags:
  - description: >-
      Tripo3D V2.5 image-to-3d - Tripo3D V2.5 image-to-3d is Tripo AI's advanced
      model for converting 2D images into 3D models. Generate high-quality 3D
      assets from single images with impressive detail and accuracy.
    name: Tripo3D V2.5 image-to-3d
paths:
  /v1/3d/generations:
    post:
      tags:
        - Tripo3D V2.5 image-to-3d
      summary: Generate 3D model
      description: Generate a 3D model using the Tripo3D V2.5 image-to-3d model
      operationId: 3d_model-plrg9jjawpfb5ffg
      requestBody:
        content:
          application/json:
            example:
              auto_size: true
              face_limit: 1
              image: example_value
              model: tripo/tripo3d-v2.5-image-to-3d
              pbr_enable: true
              quad: false
              seed: -1
              texture_alignment: original_image
              texture_enable: true
              texture_quality: standard
              texture_seed: 1
            schema:
              description: Request format for 3D model generation
              properties:
                auto_size:
                  default: true
                  description: Whether to automatically adjust model dimensions
                  type: boolean
                face_limit:
                  description: Maximum number of faces for the 3D mesh
                  type: integer
                image:
                  description: Input image for generation, it can be data URL or image URL
                  type: string
                model:
                  description: Model name to use for the request
                  enum:
                    - tripo/tripo3d-v2.5-image-to-3d
                  type: string
                pbr_enable:
                  default: true
                  description: >-
                    Whether to enable PBR (Physically Based Rendering) material
                    output
                  type: boolean
                quad:
                  default: false
                  description: Whether to use quad (4-sided) mesh topology
                  type: boolean
                seed:
                  description: Random seed for generation
                  maximum: 9999999999
                  minimum: -1
                  type: integer
                texture_alignment:
                  description: Texture alignment mode
                  enum:
                    - original_image
                    - geometry
                  type: string
                texture_enable:
                  default: true
                  description: Whether to enable texture generation
                  type: boolean
                texture_quality:
                  description: Texture quality level
                  enum:
                    - standard
                    - HD
                  type: string
                texture_seed:
                  description: Seed for texture generation randomization
                  type: integer
              required:
                - model
                - image
              title: 3D Model Generation Request
              type: object
        description: Request payload
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskResponse'
          description: Successful response
      security:
        - bearerAuth: []
components:
  schemas:
    TaskResponse:
      description: Standard async task creation response
      properties:
        code:
          description: Status code returned by the service
          example: success
          type: string
        data:
          description: Response payload containing task details
          properties:
            task_id:
              description: Identifier of the created task
              type: string
          required:
            - task_id
          type: object
        message:
          description: Additional information about the request result
          type: string
      required:
        - data
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: Bearer authentication using API key
      scheme: bearer
      type: http

````