Meshy Image to 3D API

The Image to 3D API from Meshy — 3 operation(s) for image to 3d.

Operations 5

POST /openapi/v1/image-to-3d Create an Image-to-3D task
GET /openapi/v1/image-to-3d List Image-to-3D tasks
GET /openapi/v1/image-to-3d/{id} Retrieve an Image-to-3D task
DELETE /openapi/v1/image-to-3d/{id} Delete an Image-to-3D task
GET /openapi/v1/image-to-3d/{id}/stream Stream real-time task updates via SSE

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/meshy-image-to-3d-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

meshy-image-to-3d-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Meshy Image to 3D API
  description: 'Meshy is an AI 3D model generation platform. The REST API at https://api.meshy.ai

    provides Text-to-3D (v2 preview + refine workflow), Image-to-3D, and related

    asset generation operations. Authentication is via bearer token.

    '
  version: '2.0'
  contact:
    name: Meshy
    url: https://docs.meshy.ai/
servers:
- url: https://api.meshy.ai
  description: Production API
security:
- bearerAuth: []
tags:
- name: Image to 3D
paths:
  /openapi/v1/image-to-3d:
    post:
      tags:
      - Image to 3D
      summary: Create an Image-to-3D task
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImageTo3DRequest'
      responses:
        '202':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskCreated'
    get:
      tags:
      - Image to 3D
      summary: List Image-to-3D tasks
      responses:
        '200':
          description: List of tasks
  /openapi/v1/image-to-3d/{id}:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Image to 3D
      summary: Retrieve an Image-to-3D task
      responses:
        '200':
          description: Task details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Task'
    delete:
      tags:
      - Image to 3D
      summary: Delete an Image-to-3D task
      responses:
        '200':
          description: Deleted
  /openapi/v1/image-to-3d/{id}/stream:
    parameters:
    - in: path
      name: id
      required: true
      schema:
        type: string
    get:
      tags:
      - Image to 3D
      summary: Stream real-time task updates via SSE
      responses:
        '200':
          description: Server-Sent Events stream
          content:
            text/event-stream: {}
components:
  schemas:
    TaskCreated:
      type: object
      properties:
        result:
          type: string
          description: Task ID
    ImageTo3DRequest:
      type: object
      required:
      - image_url
      properties:
        image_url:
          type: string
          description: Publicly accessible URL or base64 data URI (jpg/jpeg/png)
        ai_model:
          type: string
          enum:
          - meshy-5
          - meshy-6
          - latest
        enable_pbr:
          type: boolean
        texture_resolution:
          type: string
          enum:
          - '1024'
          - '2048'
          - '4096'
        target_formats:
          type: array
          items:
            type: string
            enum:
            - glb
            - fbx
            - obj
            - usdz
            - stl
            - 3mf
        pose_mode:
          type: string
          enum:
          - a-pose
          - t-pose
          - ''
    Task:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
          - PENDING
          - IN_PROGRESS
          - SUCCEEDED
          - FAILED
          - CANCELED
          - EXPIRED
        progress:
          type: integer
        created_at:
          type: integer
        finished_at:
          type: integer
        model_urls:
          type: object
          additionalProperties:
            type: string
        thumbnail_url:
          type: string
        prompt:
          type: string
        consumed_credits:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key supplied as `Authorization: Bearer YOUR_API_KEY`'