Bytedance Seed3d 2.0 Image To 3d
Playground
Try it on WaveSpeedAI!ByteDance Seed3D 2.0 is a fast AI image-to-3D generation model that converts a single reference image into a GLB 3D asset through WaveSpeed’s RunPod any-workflow endpoint. Ready-to-use REST inference API for 3D asset generation, product visualization, game assets, AR/VR content, digital twins, creative design, and professional image-to-3D workflows with simple integration, no coldstarts, and affordable pricing.
Features
ByteDance Seed3D 2.0 Image-to-3D converts a single reference image into a downloadable GLB 3D asset. Upload an image of the object, optionally add text guidance, choose a mesh subdivision level, and generate a rehosted WaveSpeed CDN output URL.
Why Choose This?
-
Single-image 3D generation Convert one reference image into a downloadable GLB 3D asset.
-
Optional prompt guidance Add text guidance to describe the desired 3D asset output, or use the backend default prompt when no prompt is provided.
-
Subdivision level control Choose
low,medium, orhighsubdivision level depending on the desired mesh detail. -
GLB output The model returns a GLB file suitable for common 3D workflows.
Parameters
| Parameter | Required | Description |
|---|---|---|
image | Yes | Reference image URL for the object to reconstruct. |
prompt | No | Optional text guidance for the 3D asset generation. If omitted, the backend uses a default 3D asset prompt. |
subdivision_level | No | Mesh subdivision level: low, medium, or high. Default: medium. |
How to Use
- Upload your image — Provide a reference image URL for the object you want to reconstruct.
- Add prompt guidance (optional) — Describe the desired 3D asset output, or leave it empty to use the default backend prompt.
- Choose subdivision level (optional) — Select
low,medium, orhigh. The default ismedium. - Submit — Generate the GLB 3D asset.
- Download the result — The generated GLB URL is returned in the standard WaveSpeed prediction response
outputsarray.
Pricing
Pricing is fixed at $0.35 per generation.
| Output | Cost |
|---|---|
| 1 generation | $0.35 |
Billing Rules
- Each request generates one GLB 3D asset.
- Each generation costs $0.35.
- The price is fixed and does not change based on
promptorsubdivision_level.
Best Use Cases
- Image-to-3D asset creation — Generate a 3D asset from a single object image.
- Product 3D previews — Convert product images into GLB assets for 3D display workflows.
- Prototype asset generation — Quickly create draft 3D assets from reference images.
- Object reconstruction — Reconstruct one main object from a clean, centered input image.
- GLB-based workflows — Generate assets in GLB format for downstream 3D use.
Pro Tips
- Use clean, centered images with one main object.
- Avoid cluttered backgrounds when possible.
- Make sure the object is clearly visible in the input image.
- Use
promptwhen you want to provide extra guidance for the generated 3D asset. - Use the default
mediumsubdivision level unless you specifically need lower or higher mesh subdivision. - Ensure the image URL is publicly accessible.
Notes
imageis the only required field.promptandsubdivision_levelare optional.- Default
subdivision_levelismedium. - This model runs on the RunPod image any-workflow endpoint with workflow
seed3d. - The backend requests GLB output by default because Seed3D 2.0 currently returns GLB files for this product.
- Ensure uploaded image URLs are publicly accessible.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
set -euo pipefail
export WAVESPEED_API_KEY="your-api-key"
REQUEST_BODY=$(cat <<'JSON'
{
"image": "https://interactive-examples.mdn.mozilla.net/media/cc0-images/painted-hand-298-332.jpg",
"subdivision_level": "medium"
}
JSON
)
# 1. Submit the prediction.
SUBMIT_RESPONSE=$(curl --silent --show-error --fail-with-body \
-X POST "https://api.wavespeed.ai/api/v3/bytedance/seed3d-2.0/image-to-3d" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}" \
-H "Content-Type: application/json" \
-d "${REQUEST_BODY}")
TASK=$(printf '%s' "${SUBMIT_RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
PREDICTION_ID=$(printf '%s' "${TASK}" | jq -r '.id // empty')
if [ -z "${PREDICTION_ID}" ]; then
printf 'Submission response did not contain a prediction id
' >&2
exit 1
fi
RESULT_URL=$(printf '%s' "${TASK}" | jq -r '.urls.get // empty')
if [ -z "${RESULT_URL}" ]; then RESULT_URL="https://api.wavespeed.ai/api/v3/predictions/${PREDICTION_ID}/result"; fi
# 2. Poll until the prediction finishes.
while true; do
RESPONSE=$(curl --silent --show-error --fail-with-body \
"${RESULT_URL}" \
-H "Authorization: Bearer ${WAVESPEED_API_KEY}")
RESULT=$(printf '%s' "${RESPONSE}" | jq 'if type == "object" and has("data") then .data else . end')
STATUS=$(printf '%s' "${RESULT}" | jq -r '.status // empty')
case "${STATUS}" in
completed) printf '%s\n' "${RESULT}" | jq '.outputs'; break ;;
failed|cancelled|timeout) printf '%s\n' "${RESULT}" | jq . >&2; exit 1 ;;
created|processing) sleep 2 ;;
*) printf 'Unexpected status: %s
' "${STATUS}" >&2; exit 1 ;;
esac
doneParameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| image | string | Yes | - | Reference image URL for Seed3D generation. | |
| prompt | string | No | - | Optional text guidance for the generated 3D asset. | |
| subdivision_level | string | No | medium | low, medium, high | Mesh subdivision level. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Output values, usually URL strings; some models return text strings or structured result objects (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction |
| data.model | string | Model ID used for the prediction |
| data.outputs | array<string | object> | Array of generated outputs (empty when status is not completed). Items are usually URL strings, but may be text strings or structured result objects, depending on the model. |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to poll for the prediction result |
| data.status | string | Status: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |