Intelliverse

Media API

Credit-metered image, video, voiceover, music, and 3D generation with async job polling.

Endpoints

Media draws from your single iv_credits balance at published per-unit rates. Credits are held on job start and settled to actual usage on completion — one balance covers every media kind.

POST/v1/media/images
POST/v1/media/videos
POST/v1/media/voiceover
POST/v1/media/audiobooks
POST/v1/media/audio
POST/v1/media/3d
GET/v1/media/jobs/{job_id}

Quality classes

  • standard — available on every tier.
  • cinematicPro and above.
  • studioPro Max only.

Create a media job

Parameters
NameTypeDescription
app_idRequiredstringThe app whose wallet is charged and whose library stores the output.
promptRequiredstringGeneration prompt. Voiceover and audiobooks take text instead.
quality_classOptionalstringstandard (default), cinematic, or studio — gated by tier as above.
Shell
curl https://router-api.intelli-verse-x.ai/v1/media/images \
  -H "Authorization: Bearer $INTELLIVERSE_API_KEY" \
  -d '{ "app_id": "APP_ID", "prompt": "isometric city at dusk", "quality_class": "cinematic" }'

curl https://router-api.intelli-verse-x.ai/v1/media/voiceover \
  -H "Authorization: Bearer $INTELLIVERSE_API_KEY" \
  -d '{ "app_id": "APP_ID", "text": "Chapter one...", "quality_class": "studio" }'

Poll a job

Generation is asynchronous: create returns a job id; poll until status reaches succeeded (with output URLs) or failed (held credits are released).

Shell
curl https://router-api.intelli-verse-x.ai/v1/media/jobs/JOB_ID \
  -H "Authorization: Bearer $INTELLIVERSE_API_KEY"

Credit rates

OutputCreditsPerMinimum tier
Standard image20imageFree
Cinematic image100imageIntelliverse Pro
Studio image200imageIntelliverse Pro Max
Standard video40secondFree
Studio video175secondIntelliverse Pro Max
Voiceover401k characters (≈1 min narrated)Free
Studio voiceover801k characters (≈1 min narrated)Intelliverse Pro Max
Music720generated minuteFree
3D asset250assetFree

Note

These rates mirror the seeded credit prices the platform actually bills — the same table drives /pricing. See Credits & billing for grants and top-ups.
Did this doc help you?
Help us improve these docs