Hyper3D Rodin v2.5 API, Hyper3D Rodin v1 API: Pricing, Documentation
by Hyper3D
Hyper3D Rodin v2.5 API, developers can create production-ready 3D assets for games, simulations, and visualization without manual modeling. The API supports various 3D formats and provides mesh optimization for different platform requirements.

Models Version
Get $5 Free Credit on First Payment
No strings attached — add funds and get $5 bonus instantly
Hyper3D Rodin v2.5 API Documentation
https://gateway.pixazo.ai/hyper3d-rodin-v2-5-text-to-3d/v1/hyper3d-rodin-v2-5-text-to-3d-request
Authentication
All requests require an API key passed via header.
| Header | Type | Required | Description |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | string | Yes | Your API subscription key |
Hyper3D Rodin v2.5 Text to 3D generate request
Request Code
POST https://gateway.pixazo.ai/hyper3d-rodin-v2-5-text-to-3d/v1/hyper3d-rodin-v2-5-text-to-3d-request
Content-Type: application/json
Cache-Control: no-cache
Ocp-Apim-Subscription-Key: YOUR_API_KEY
{
"prompt": "A stylized wooden treasure chest with iron bands and a heavy padlock",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false
}
import requests
url = "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-text-to-3d/v1/hyper3d-rodin-v2-5-text-to-3d-request"
headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache",
"Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
}
data = {
"prompt": "A stylized wooden treasure chest with iron bands and a heavy padlock",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
const url = "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-text-to-3d/v1/hyper3d-rodin-v2-5-text-to-3d-request";
const headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache",
"Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
};
const data = {
"prompt": "A stylized wooden treasure chest with iron bands and a heavy padlock",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data));
curl -X POST "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-text-to-3d/v1/hyper3d-rodin-v2-5-text-to-3d-request" \
-H "Content-Type: application/json" \
-H "Cache-Control: no-cache" \
-H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
--data-raw '{
"prompt": "A stylized wooden treasure chest with iron bands and a heavy padlock",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false
}'
Output
{
"request_id": "hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Webhook (Optional)
Add the X-Webhook-URL header to your generate request to receive a POST callback instead of polling.
X-Webhook-URL: https://your-server.com/webhook/callback
Request Parameters - Hyper3D Rodin v2.5 Text to 3D generate request
| Parameter | Required | Type | Default | Allowed values / range | Description |
|---|---|---|---|---|---|
| prompt | Yes | string | — | non-empty; ≤ 1024 chars | Text prompt guiding model generation (max 1024 characters). |
| tier | No | enum | Gen-2.5-High | Gen-2.5-Minimum, Gen-2.5-Extreme-Low, Gen-2.5-Low, Gen-2.5-Medium, Gen-2.5-High, Gen-2.5-Extreme-High | Generation tier. |
| geometry_file_format | No | enum | glb | glb, usdz, fbx, obj, stl | Output mesh format. |
| quality_mesh_option | No | enum | Auto | Auto, 4K Quad, 8K Quad, 18K Quad, 50K Quad, 100K Quad, 200K Quad, 2K Triangle, 20K Triangle, 50K Triangle, 150K Triangle, 500K Triangle, 1M Triangle, 2M Triangle | Combined quality and mesh type. Quad = smooth surfaces; Triangle = detailed geometry. |
| material | No | enum | All | PBR, Shaded, All, None | Material type. |
| texture_mode | No | enum | — | legacy, extreme-low, low, medium, high | Texture quality. |
| enable_creative_mode | No | boolean | false | — | Enhanced generative robustness for complex prompts. |
| hd_texture | No | boolean | false | — | Enhanced texture post-processing for higher fidelity. |
| texture_delight | No | boolean | false | — | Removes baked-in lighting and highlights from the texture for a neutral surface that's easier to edit or relight. |
| is_micro | No | boolean | false | — | Adds extra fine surface detail to the 3D model. Only available on the Gen-2.5-Extreme-High tier. |
| TAPose | No | boolean | false | — | Outputs model in T-pose or A-pose for easier rigging and animation. |
| bbox_condition | No | object | — | width, height, length: 1–2048 | Object with integer dimensions {width, height, length} to constrain the model size. |
| addons | No | object | — | {high_pack: boolean} | Object with {high_pack: boolean}. When true, uses 4K textures instead of 2K and increases face count by ~16x in Quad mode. |
| seed | No | integer | — | 0–65535 | Random seed that controls the generation's randomness. Reuse the same seed with identical settings to reproduce the same result; leave it empty for a different output each time. |
Example Request
{
"prompt": "A stylized wooden treasure chest with iron bands and a heavy padlock",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false
}
Response
{
"request_id": "hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Request Headers
| Header | Value |
|---|---|
| Content-Type | application/json |
| Cache-Control | no-cache |
| Ocp-Apim-Subscription-Key | YOUR_API_KEY |
Response Handling
Common status codes.
| Code | Meaning |
|---|---|
| 202 | Accepted — Request queued |
| 400 | Bad Request |
| 401 | Unauthorized |
| 402 | Insufficient Balance |
| 403 | Forbidden |
| 429 | Too Many Requests |
| 500 | Internal Server Error |
Error Responses
Queue system errors and model validation errors.
Queue System Errors
// 402 — Insufficient balance
{
"error": "Insufficient Balance",
"message": "Your wallet does not have enough balance."
}
// 400 — Model not found
{
"error": "Model not found",
"message": "Model 'hyper3d-rodin-v2-5-text-to-3d' not found or is disabled"
}
Error via Status/Webhook
{
"request_id": "hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "ERROR",
"model_id": "hyper3d-rodin-v2-5-text-to-3d",
"error": "Description of the error",
"output": null
}
Retrieving Results
Poll the universal status endpoint to check progress and retrieve results.
Endpoint
GET https://gateway.pixazo.ai/v2/requests/status/{request_id}
Ocp-Apim-Subscription-Key: YOUR_API_KEY
cURL Example
curl -H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
"https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Response (Completed)
{
"request_id": "hyper3d-rodin-v2-5-text-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "COMPLETED",
"model_id": "hyper3d-rodin-v2-5-text-to-3d",
"error": null,
"output": {
"model_mesh": {
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-text-to-3d_019dxxxx/output.glb",
"content_type": "model/gltf-binary",
"file_name": "output.glb",
"file_size": 1245678
},
"model_meshes": [
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-text-to-3d_019dxxxx/output.usdz",
"content_type": "model/vnd.usdz+zip",
"file_name": "output.usdz",
"file_size": 1567890
},
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-text-to-3d_019dxxxx/output.fbx",
"content_type": "application/octet-stream",
"file_name": "output.fbx",
"file_size": 1890123
}
],
"textures": [
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-text-to-3d_019dxxxx/albedo.png",
"content_type": "image/png",
"file_name": "albedo.png",
"file_size": 4194304,
"width": 2048,
"height": 2048
},
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-text-to-3d_019dxxxx/normal.png",
"content_type": "image/png",
"file_name": "normal.png",
"file_size": 4194304,
"width": 2048,
"height": 2048
}
],
"seed": 12345
},
"created_at": "2026-03-31T10:00:00.000Z",
"updated_at": "2026-03-31T10:00:15.000Z",
"completed_at": "2026-03-31T10:00:15.000Z"
}
Response Fields
| Field | Type | Description |
|---|---|---|
| request_id | string | Unique request identifier |
| status | string | QUEUED, PROCESSING, COMPLETED, FAILED, or ERROR |
| model_id | string | Model that processed the request |
| error | string|null | Error message if failed |
| output.media_url | array | URLs to generated media (R2 CDN) |
| output.media_type | string | MIME type of the output |
| created_at | string | When request was created |
| completed_at | string | When request completed |
| polling_url | string | Status URL (initial response only) |
Status Values
| Status | Description |
|---|---|
| QUEUED | Request accepted, waiting to be processed |
| PROCESSING | Being processed by the model |
| COMPLETED | Done — output contains the result |
| FAILED | Failed — check error field |
| ERROR | System error — not charged |
Status Flow
QUEUED → PROCESSING → COMPLETED
→ FAILED
→ ERROR
Typical Workflow
- Send a generate request to the API endpoint
- Save the
request_idfrom the response - Poll every 5-10 seconds:
GET /v2/requests/status/{request_id} - When
statusis"COMPLETED", download fromoutput.media_url
Tip: Use X-Webhook-URL header to get a callback instead of polling.
Hyper3D Rodin v2.5 API Pricing
| Usage | Price (USD) |
|---|---|
| Per generation (standard tier) | $0.40 |
| Gen-2.5-Extreme-High tier | $0.80 |
| HighPack add-on (additional) | $0.80 |
Hyper3D Rodin v2.5 API Documentation
https://gateway.pixazo.ai/hyper3d-rodin-v2-5-image-to-3d/v1/hyper3d-rodin-v2-5-image-to-3d-request
Authentication
All requests require an API key passed via header.
| Header | Type | Required | Description |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | string | Yes | Your API subscription key |
Hyper3D Rodin v2.5 Image to 3D generate request
Request Code
POST https://gateway.pixazo.ai/hyper3d-rodin-v2-5-image-to-3d/v1/hyper3d-rodin-v2-5-image-to-3d-request
Content-Type: application/json
Cache-Control: no-cache
Ocp-Apim-Subscription-Key: YOUR_API_KEY
{
"image_urls": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/Image.jpeg"
],
"prompt": "",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"use_original_alpha": false,
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false,
"preview_render": false
}
import requests
url = "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-image-to-3d/v1/hyper3d-rodin-v2-5-image-to-3d-request"
headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache",
"Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
}
data = {
"image_urls": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/Image.jpeg"
],
"prompt": "",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"use_original_alpha": false,
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false,
"preview_render": false
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
const url = "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-image-to-3d/v1/hyper3d-rodin-v2-5-image-to-3d-request";
const headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache",
"Ocp-Apim-Subscription-Key": "YOUR_API_KEY"
};
const data = {
"image_urls": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/Image.jpeg"
],
"prompt": "",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"use_original_alpha": false,
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false,
"preview_render": false
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data));
curl -X POST "https://gateway.pixazo.ai/hyper3d-rodin-v2-5-image-to-3d/v1/hyper3d-rodin-v2-5-image-to-3d-request" \
-H "Content-Type: application/json" \
-H "Cache-Control: no-cache" \
-H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
--data-raw '{
"image_urls": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/Image.jpeg"
],
"prompt": "",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"use_original_alpha": false,
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false,
"preview_render": false
}'
Output
{
"request_id": "hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Webhook (Optional)
Add the X-Webhook-URL header to your generate request to receive a POST callback instead of polling.
X-Webhook-URL: https://your-server.com/webhook/callback
Request Parameters - Hyper3D Rodin v2.5 Image to 3D generate request
| Parameter | Required | Type | Default | Allowed values / range | Description |
|---|---|---|---|---|---|
| image_urls | Yes | string[] | — | — | URLs of reference images (1–5 images). Must be publicly accessible HTTP/HTTPS URLs. |
| prompt | No | string | "" | — | Optional text prompt to refine generation. Describes desired style, details, or modifications to the 3D output. |
| tier | No | enum | Gen-2.5-High | Gen-2.5-Minimum, Gen-2.5-Extreme-Low, Gen-2.5-Low, Gen-2.5-Medium, Gen-2.5-High, Gen-2.5-Extreme-High | Generation tier. Higher tiers increase quality and cost. |
| geometry_file_format | No | enum | glb | glb, usdz, fbx, obj, stl | Output mesh format. |
| quality_mesh_option | No | enum | Auto | Auto, 4K Quad, 8K Quad, 18K Quad, 50K Quad, 100K Quad, 200K Quad, 2K Triangle, 20K Triangle, 50K Triangle, 150K Triangle, 500K Triangle, 1M Triangle, 2M Triangle | Combined quality and mesh type. |
| material | No | enum | All | PBR, Shaded, All, None | Material type. |
| texture_mode | No | enum | — | legacy, extreme-low, low, medium, high | Texture quality. |
| use_original_alpha | No | boolean | false | — | Preserve the transparency channel from input images. |
| enable_creative_mode | No | boolean | false | — | Enhanced generative robustness for complex or ambiguous inputs. |
| hd_texture | No | boolean | false | — | Enhanced texture post-processing for higher fidelity and detail. |
| texture_delight | No | boolean | false | — | Removes baked-in lighting and shine from the texture, giving a flat, neutral surface that's easier to relight or edit. |
| is_micro | No | boolean | false | — | Adds extra fine surface detail to the 3D model. Only available on the Gen-2.5-Extreme-High tier. |
| TAPose | No | boolean | false | — | Output model in T-pose or A-pose for easier rigging and animation. |
| preview_render | No | boolean | false | — | Generate a preview render image alongside the model files. |
| bbox_condition | No | object | — | {width, height, length} each 1–2048 | Object with integer dimensions to constrain the model’s bounding box size. |
| addons | No | object | — | {high_pack: boolean} | Object with `{high_pack: boolean}`. When `true`, outputs 4K textures instead of 2K and increases face count by ~16x in Quad mode. |
| seed | No | integer | — | 0–65535 | Random seed that controls the generation's randomness. Reuse the same seed with identical settings to reproduce the same result; leave it empty for a different output each time. |
Content Item Types & Limits
| Type | Max | Format / Size | Description |
|---|---|---|---|
| image | 5 | JPG, PNG | Reference image(s), 1–5. |
Example Request
{
"image_urls": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/Image.jpeg"
],
"prompt": "",
"tier": "Gen-2.5-High",
"geometry_file_format": "glb",
"quality_mesh_option": "Auto",
"material": "All",
"use_original_alpha": false,
"enable_creative_mode": false,
"hd_texture": false,
"texture_delight": false,
"is_micro": false,
"TAPose": false,
"preview_render": false
}
Response
{
"request_id": "hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Request Headers
| Header | Value |
|---|---|
| Content-Type | application/json |
| Cache-Control | no-cache |
| Ocp-Apim-Subscription-Key | YOUR_API_KEY |
Response Handling
Common status codes.
| Code | Meaning |
|---|---|
| 202 | Accepted — Request queued |
| 400 | Bad Request |
| 401 | Unauthorized |
| 402 | Insufficient Balance |
| 403 | Forbidden |
| 429 | Too Many Requests |
| 500 | Internal Server Error |
Error Responses
Queue system errors and model validation errors.
Queue System Errors
// 402 — Insufficient balance
{
"error": "Insufficient Balance",
"message": "Your wallet does not have enough balance."
}
// 400 — Model not found
{
"error": "Model not found",
"message": "Model 'hyper3d-rodin-v2-5-image-to-3d' not found or is disabled"
}
Error via Status/Webhook
{
"request_id": "hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "ERROR",
"model_id": "hyper3d-rodin-v2-5-image-to-3d",
"error": "Description of the error",
"output": null
}
Retrieving Results
Poll the universal status endpoint to check progress and retrieve results.
Endpoint
GET https://gateway.pixazo.ai/v2/requests/status/{request_id}
Ocp-Apim-Subscription-Key: YOUR_API_KEY
cURL Example
curl -H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
"https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Response (Completed)
{
"request_id": "hyper3d-rodin-v2-5-image-to-3d_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "COMPLETED",
"model_id": "hyper3d-rodin-v2-5-image-to-3d",
"error": null,
"output": {
"model_mesh": {
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-image-to-3d_019dxxxx/output.glb",
"content_type": "model/gltf-binary",
"file_name": "output.glb",
"file_size": 12456789
},
"model_meshes": [
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-image-to-3d_019dxxxx/output.fbx",
"content_type": "model/fbx",
"file_name": "output.fbx",
"file_size": 15678901
}
],
"textures": [
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-image-to-3d_019dxxxx/albedo.png",
"content_type": "image/png",
"file_name": "albedo.png",
"file_size": 4194304,
"width": 4096,
"height": 4096
},
{
"url": "https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-v2-5-image-to-3d_019dxxxx/normal.png",
"content_type": "image/png",
"file_name": "normal.png",
"file_size": 4194304,
"width": 4096,
"height": 4096
}
],
"seed": 12345
},
"created_at": "2026-03-31T10:00:00.000Z",
"updated_at": "2026-03-31T10:00:15.000Z",
"completed_at": "2026-03-31T10:00:15.000Z"
}
Response Fields
| Field | Type | Description |
|---|---|---|
| request_id | string | Unique request identifier |
| status | string | QUEUED, PROCESSING, COMPLETED, FAILED, or ERROR |
| model_id | string | Model that processed the request |
| error | string|null | Error message if failed |
| output.media_url | array | URLs to generated media (R2 CDN) |
| output.media_type | string | MIME type of the output |
| created_at | string | When request was created |
| completed_at | string | When request completed |
| polling_url | string | Status URL (initial response only) |
Status Values
| Status | Description |
|---|---|
| QUEUED | Request accepted, waiting to be processed |
| PROCESSING | Being processed by the model |
| COMPLETED | Done — output contains the result |
| FAILED | Failed — check error field |
| ERROR | System error — not charged |
Status Flow
QUEUED → PROCESSING → COMPLETED
→ FAILED
→ ERROR
Typical Workflow
- Send a generate request to the API endpoint
- Save the
request_idfrom the response - Poll every 5-10 seconds:
GET /v2/requests/status/{request_id} - When
statusis"COMPLETED", download fromoutput.media_url
Tip: Use X-Webhook-URL header to get a callback instead of polling.
Hyper3D Rodin v2.5 API Pricing
| Usage | Price (USD) |
|---|---|
| Per generation (standard tier) | $0.40 |
| Gen-2.5-Extreme-High tier | $0.80 |
| HighPack add-on (additional) | $0.80 |
Hyper3D Rodin v1 API Documentation
https://gateway.pixazo.ai/hyper3d-rodin-259/v1/hyper3d-rodin-request
Authentication
All requests require an API key passed via header.
| Header | Type | Required | Description |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | string | Yes | Your API subscription key |
Hyper3D Rodin generate request - Hyper3D Rodin
Request Code
POST https://gateway.pixazo.ai/hyper3d-rodin-259/v1/hyper3d-rodin-request
Content-Type: application/json
Cache-Control: no-cache
Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY
{
"prompt": "A futuristic robot with sleek metallic design and glowing blue accents",
"input_image_urls": [
"https://pub-5e7dd3f6986243de990b46ce581cf66e.r2.dev/v1/hyper3d-rodin-259_019dde5c-1240-78d7-9df5-2b73b4629b522/input_0.png"
],
"condition_mode": "concat",
"geometry_file_format": "glb",
"material": "Shaded",
"quality": "medium",
"tier": "Regular"
}
import requests
url = "https://gateway.pixazo.ai/hyper3d-rodin-259/v1/hyper3d-rodin-request"
headers = {
"Content-Type": "application/json",
"Cache-Control": "no-cache",
"Ocp-Apim-Subscription-Key": "YOUR_SUBSCRIPTION_KEY"
}
data = {
"prompt": "A futuristic robot with sleek metallic design and glowing blue accents",
"input_image_urls": [
"https://pub-5e7dd3f6986243de990b46ce581cf66e.r2.dev/v1/hyper3d-rodin-259_019dde5c-1240-78d7-9df5-2b73b4629b522/input_0.png"
],
"condition_mode": "concat",
"geometry_file_format": "glb",
"material": "Shaded",
"quality": "medium",
"tier": "Regular"
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
const url = 'https://gateway.pixazo.ai/hyper3d-rodin-259/v1/hyper3d-rodin-request';
const data = {
"prompt": "A futuristic robot with sleek metallic design and glowing blue accents",
"input_image_urls": [
"https://pub-5e7dd3f6986243de990b46ce581cf66e.r2.dev/v1/hyper3d-rodin-259_019dde5c-1240-78d7-9df5-2b73b4629b522/input_0.png"
],
"condition_mode": "concat",
"geometry_file_format": "glb",
"material": "Shaded",
"quality": "medium",
"tier": "Regular"
};
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Cache-Control': 'no-cache',
'Ocp-Apim-Subscription-Key': 'YOUR_SUBSCRIPTION_KEY'
},
body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
curl -X POST "https://gateway.pixazo.ai/hyper3d-rodin-259/v1/hyper3d-rodin-request" \
-H "Content-Type: application/json" \
-H "Cache-Control: no-cache" \
-H "Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY" \
--data-raw '{
"prompt": "A futuristic robot with sleek metallic design and glowing blue accents",
"input_image_urls": [
"https://pub-5e7dd3f6986243de990b46ce581cf66e.r2.dev/v1/hyper3d-rodin-259_019dde5c-1240-78d7-9df5-2b73b4629b522/input_0.png"
],
"condition_mode": "concat",
"geometry_file_format": "glb",
"material": "Shaded",
"quality": "medium",
"tier": "Regular"
}'
Output
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Webhook (Optional)
Add the X-Webhook-URL header to your submit request to receive a POST callback when the job completes — no polling required.
Using curl? These are HTTP request headers — pass each with -H, e.g. -H "X-Webhook-URL: https://your-server.com/webhook/callback". Do not paste them as bare lines, and end every line of a multi-line command with \.
Webhook Headers
| Header | Required | Default | Description |
|---|---|---|---|
X-Webhook-URL | Yes (to enable) | — | HTTPS endpoint on your server that will receive the POST callback. Must respond 2xx within a few seconds (process async if needed). |
X-Webhook-Mode | No | terminal | terminal — fires once at the final status (COMPLETED/FAILED/ERROR). sync — fires on every poll cycle plus the terminal event, and caps the queue’s polling delay at 15s for tighter progress updates. |
Example: enable webhook
X-Webhook-URL: https://your-server.com/webhook/callback
X-Webhook-Mode: terminal
Callback Payload
Your endpoint receives a POST application/json with the same shape as the GET /v2/requests/status/{request_id} response. Example terminal callback (mode terminal):
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "COMPLETED",
"model_id": "hyper3d-rodin-259",
"error": null,
"output": {
"media_url": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/output.glb"
],
"media_type": "model/glb"
},
"created_at": "2026-05-22T13:17:32.110Z",
"updated_at": "2026-05-22 13:19:23",
"completed_at": "2026-05-22 13:19:23"
}
Failure callback shape
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "ERROR",
"model_id": "hyper3d-rodin-259",
"error": "Description of the error",
"output": null,
"created_at": "...",
"updated_at": "...",
"completed_at": "..."
}
Delivery semantics
- terminal mode (default) — exactly one
POSTwhen the request reaches a terminal status. No callback duringPROCESSING. - sync mode —
POSTon every status poll (with delay capped at ~15s) plus a finalPOSTat terminal status. Use when you want progress updates. - Idempotency — use
request_idas your idempotency key. Network retries can deliver the same callback more than once; your handler must tolerate duplicates. - Response — respond
200 OKwithin a few seconds. The queue does not block on slow handlers, but persistent failures may stop further deliveries. - HTTPS required — plain
http://URLs are rejected.
Request Parameters - Hyper3D Rodin generate request
| Parameter | Required | Type | Default | Allowed values / range | Description |
|---|---|---|---|---|---|
| prompt | No | string | "" | — | A textual prompt that guides the 3D model generation. Required for Text-to-3D mode (when no input images are supplied); optional for Image-to-3D mode, where it helps steer the result. |
| input_image_urls | No | array | — | — | URLs of the input images used to generate the 3D model. Required for Image-to-3D mode; optional for Text-to-3D mode. Multiple images are supported — see condition_mode. |
| condition_mode | No | string | "concat" | "fuse", "concat" | How multiple input images are combined. Use "concat" when uploading several multi-view images of the same object (any order). Use "fuse" to extract and fuse the features of objects from one or more images. |
| geometry_file_format | No | string | "glb" | "glb", "usdz", "fbx", "obj", "stl" | Format of the generated geometry file. |
| material | No | string | "PBR" | "PBR", "Shaded" | Material type applied to the generated model. |
| quality | No | string | "medium" | "high", "medium", "low", "extra-low" | Generation quality, controlling the level of detail of the generated mesh. |
| tier | No | string | "Regular" | "Regular", "Sketch" | Tier of generation. Use "Regular" for Rodin Regular; use "Sketch" for Rodin Sketch. |
| seed | No | integer | — | 0–65535 | Seed value for randomization. Reuse the same seed to reproduce a previous generation. |
| use_hyper | No | boolean | false | true, false | Whether to export the model using hyper mode, which produces finer geometric detail. |
| TAPose | No | boolean | false | true, false | When generating a human-like model, forces the generated result into a T/A pose. |
| bbox_condition | No | array | — | 3 integers, e.g. [100, 50, 150] | Bounding box that sets the dimensions and scaling of the generated model: Length (X-axis), Width (Y-axis) and Height (Z-axis). |
| addons | No | string | — | "HighPack" | Optional generation add-on. "HighPack" returns 4K resolution textures instead of the default 1K, plus a high-poly model, and increases the cost of the generation. |
Content Item Types & Limits
| Type | Max | Format / Size | Description |
|---|---|---|---|
| image | 5 | JPG, PNG | Reference image(s), 1–5. |
Example Request
{
"prompt": "A futuristic robot with sleek metallic design and glowing blue accents",
"input_image_urls": [
"https://pub-5e7dd3f6986243de990b46ce581cf66e.r2.dev/v1/hyper3d-rodin-259_019dde5c-1240-78d7-9df5-2b73b4629b522/input_0.png"
],
"condition_mode": "concat",
"geometry_file_format": "glb",
"material": "Shaded",
"quality": "medium",
"tier": "Regular"
}
Response
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "QUEUED",
"polling_url": "https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
Request Headers
| Header | Value |
|---|---|
| Content-Type | application/json |
| Cache-Control | no-cache |
| Ocp-Apim-Subscription-Key | YOUR_SUBSCRIPTION_KEY |
Response Handling
Common status codes.
| Code | Meaning |
|---|---|
| 202 | Accepted — Request queued |
| 400 | Bad Request |
| 401 | Unauthorized |
| 402 | Insufficient Balance |
| 403 | Forbidden |
| 429 | Too Many Requests |
| 500 | Internal Server Error |
Error Responses
Queue system errors and model validation errors.
Queue System Errors
// 402 — Insufficient balance
{
"error": "Insufficient Balance",
"message": "Your wallet does not have enough balance."
}
// 400 — Model not found
{
"error": "Model not found",
"message": "Model 'hyper3d-rodin-259' not found or is disabled"
}
Error via Status/Webhook
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "ERROR",
"model_id": "hyper3d-rodin-259",
"error": "Description of the error",
"output": null
}
Retrieving Results
Poll the universal status endpoint to check progress and retrieve results.
Endpoint
GET https://gateway.pixazo.ai/v2/requests/status/{request_id}
Ocp-Apim-Subscription-Key: YOUR_API_KEY
cURL Example
curl -H "Ocp-Apim-Subscription-Key: YOUR_API_KEY" \
"https://gateway.pixazo.ai/v2/requests/status/hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Response (Completed)
{
"request_id": "hyper3d-rodin-259_019dxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"status": "COMPLETED",
"model_id": "hyper3d-rodin-259",
"error": null,
"output": {
"media_url": [
"https://pub-582b7213209642b9b995c96c95a30381.r2.dev/v1/hyper3d-rodin-259_019dxxxx-xxxx/output.ext"
],
"media_type": "application/octet-stream"
},
"created_at": "2026-03-31T10:00:00.000Z",
"updated_at": "2026-03-31T10:00:15.000Z",
"completed_at": "2026-03-31T10:00:15.000Z"
}
Response Fields
| Field | Type | Description |
|---|---|---|
| request_id | string | Unique request identifier |
| status | string | QUEUED, PROCESSING, COMPLETED, FAILED, or ERROR |
| model_id | string | Model that processed the request |
| error | string|null | Error message if failed |
| output.media_url | array | URLs to generated media (R2 CDN) |
| output.media_type | string | MIME type of the output |
| created_at | string | When request was created |
| completed_at | string|null | When request completed |
| polling_url | string | Status URL (initial response only) |
Status Values
| Status | Description |
|---|---|
| QUEUED | Request accepted, waiting to be processed |
| PROCESSING | Being processed by the model |
| COMPLETED | Done — output contains the result |
| FAILED | Failed — check error field |
| ERROR | System error — not charged |
Status Flow
QUEUED → PROCESSING → COMPLETED
→ FAILED
→ ERROR
Typical Workflow
- Send a generate request to the API endpoint
- Save the
request_idfrom the response - Poll every 5-10 seconds:
GET /v2/requests/status/{request_id} - When
statusis"COMPLETED", download fromoutput.media_url
Tip: Use X-Webhook-URL header to get a callback instead of polling.
Hyper3D Rodin v1 API Pricing
| Resolution | Price (USD) |
|---|---|
| Per Generation | $0.40 |