http
Base URL: https://openapi.tripo3d.ai/v3
Endpoint: POST /generation/image-to-multiview
Generate multiview images from a single image. Useful as preprocessing for multiview-to-model, or for turntable previews.
Note
- This endpoint requires an API Key. Include it in the Authorization header as Bearer {api_key}.
- This is an asynchronous API. After submitting the request, use the Task Query API to poll for results, or configure a Webhook to receive automatic notifications when the task completes.
Request Parameters
Request Body
inputstringRequired
Source image for multiview generation. Accepts the following input types:
Choose exactly one — do not pass multiple types simultaneously.
- file_token — Upload an image via the File Upload API first, then pass the returned token.
Example:file_abc123 - URL — A publicly accessible direct link to an image.
Example:https://example.com/character.png
Notes
- Formats:
PNG,JPEG,WebP - Subject should be clearly visible against a clean background.
Examples
Basic
{
"input": "https://example.com/character.png"}Create task
{
"code": 0,
"data": {
"task_id": "task_abc123"}
}Task result
{
"code": 0,
"data": {
"task_id": "task_abc123",
"status": "success",
"output": {
"front_view_url": "https://cdn.tripo3d.ai/front.png",
"left_view_url": "https://cdn.tripo3d.ai/left.png",
"back_view_url": "https://cdn.tripo3d.ai/back.png",
"right_view_url": "https://cdn.tripo3d.ai/right.png"}
}
}