The New Black AI

Image to 3D API

Image to 3D — workflow

From a product image to a 3D model — fashion objects turned into assets.

POST/v1/generateworkflow: create_3d_models-v1

One endpoint serves every workflow — this page documents create_3d_models-v1, the current version. Credits are debited at submission (10 cr standard, 10 cr pro); a failed generation is refunded automatically. Earlier versions of this endpoint, if any, keep being served under their own names.

ParameterValue for this workflow
workflow"create_3d_models-v1" required
source_imageProduct image — one public HTTPS URL.required
ratio1:1
tier"standard" (10 cr) or "pro" (10 cr)
webhook_urlOptional — we POST the outcome here when the generation settles. Without it, poll the URL returned in the response until the status settles.

Example request

curl -X POST https://thenewblack.ai/api/v1/generate \
  -H "Authorization: Bearer tnb_live_XXXXXXXXXXXX" \
  -H "Content-Type: application/json" \
  -d '{
    "workflow": "create_3d_models-v1",
    "source_image": "https://example.com/image.jpg",
    "ratio": "1:1",
    "tier": "standard"
  }'
// 202 Accepted
{
  "generation_id": "3f1c9a6e-...",
  "status": "running",
  "poll": "/api/v1/generations/3f1c9a6e-..."
}

Example response

Poll /v1/generations/{id} (or receive the webhook) until the generation settles:

// 200 OK
{
  "generation_id": "3f1c9a6e-...",
  "workflow": "create_3d_models",
  "status": "succeeded",
  "result": {
    "type": "3d",
    "url": "https://.../result.webp",
    "thumbnail": "https://.../thumb.webp"
  }
}

Results are stored for 48 hours — copy them to your own storage. Authentication, errors and webhooks are documented in the full API reference.

Frequently asked questions

What does the image-to-3d endpoint return?

A 3D asset generated from your product photo, collected like any other generation result.

How much does it cost?

10 credits on the standard tier, 10 on pro. Credits come with plans and packs; a failed generation is always refunded.

Other endpoints: Virtual Try-On API · AI Fashion Models API · Fashion Design API · Reimagine Model API · Swap Model API · AI Stylist API · all endpoints