API Documentation
Welcome to the 3DView.ai API. Build the next generation of 3D applications by integrating our state-of-the-art image-to-3D and text-to-3D models directly into your product.
Developer Preview
The API is currently in beta. Rate limits apply. Contact enterprise sales for higher limits.
Authentication
Authenticate your API requests by including your secret API Key in the Authorization header.
Please sign in to view your key
sk-live-••••••••••••••••••••••••Never share your API key. Server-side usage only.
Generate 3D
Create a 3D model from an image URL or a text prompt.
POST
https://api.3dview.ai/v1/generateBody Parameters
imageUrlstring, optionalPublic URL of the input image (PNG/JPG).
promptstring, optionalText description for Text-to-3D generation.
modeenum, default: 'fast'Generation mode: 'fast' or 'high-quality'.
cURL
curl -X POST https://api.3dview.ai/v1/generate \
-H "Authorization: Bearer sk-live-xxxxxxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"imageUrl": "https://example.com/shoe.png",
"mode": "high-quality"
}'Response
{
"id": "gen_123456789",
"status": "processing",
"model_url": null,
"eta_seconds": 30
}