TripoSR API

triposr
TripoSR: Fast, transformer-based 3D reconstruction model from single RGB images.
Output
$0.091 / gen

How to use TripoSR API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to triposr.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/images/generations",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "triposr",
      "prompt": "A cat holding a sign that says hello"
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/images/generations", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "triposr",
    "prompt": "A cat holding a sign that says hello"
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/images/generations \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"triposr","prompt":"A cat holding a sign that says hello"}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

TripoSR API Pricing

TypePrice
Output
$0.091 / gen

TripoSR Benchmarks

BenchmarkScoreWhat it measuresSourceRetrieved
GSO
0.111 (Chamfer Distance, lower better)
Image-to-3D quality on Google Scanned ObjectsSourceJuly 12, 2026

TripoSR vs other models

ModelInputOutputContextBest for
TripoSR
This page
$0.091 / gen
Image generation at scale
$0.325 / 1M tokens
$78 / 1M tokens
128K tokens
Image generation at scale
$6.5 / 1M tokens
$39 / 1M tokens
Image generation at scale
Image generation at scale
$0.0195 / MP (variable)
Image generation at scale

Frequently asked questions

TripoSR takes image, text as input and returns image.

TripoSR is priced at $0.091 / gen.

TripoSR is billed per generation — a fixed charge per output rather than by prompt length.

Yes, TripoSR accepts image input as well as a text prompt.

TripoSR was built by Stability AI.

Send a request to https://api.aimlapi.com/v1/images/generations with triposr as the model id.

Yes. TripoSR is served through AI/ML API, so the same key and endpoint format used for other models applies.

TripoSR is classified as an image generation model by Stability AI that reconstructs 3D shapes from a single RGB image using a transformer architecture.

Start building with TripoSR

Get API Key
1000+ models, one API.