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/imagesPOST
/v1/media/videosPOST
/v1/media/voiceoverPOST
/v1/media/audiobooksPOST
/v1/media/audioPOST
/v1/media/3dGET
/v1/media/jobs/{job_id}Quality classes
standard— available on every tier.cinematic— Pro and above.studio— Pro Max only.
Create a media job
| Name | Type | Description |
|---|---|---|
app_idRequired | string | The app whose wallet is charged and whose library stores the output. |
promptRequired | string | Generation prompt. Voiceover and audiobooks take text instead. |
quality_classOptional | string | standard (default), cinematic, or studio — gated by tier as above. |
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).
curl https://router-api.intelli-verse-x.ai/v1/media/jobs/JOB_ID \
-H "Authorization: Bearer $INTELLIVERSE_API_KEY"Credit rates
| Output | Credits | Per | Minimum tier |
|---|---|---|---|
| Standard image | 20 | image | Free |
| Cinematic image | 100 | image | Intelliverse Pro |
| Studio image | 200 | image | Intelliverse Pro Max |
| Standard video | 40 | second | Free |
| Studio video | 175 | second | Intelliverse Pro Max |
| Voiceover | 40 | 1k characters (≈1 min narrated) | Free |
| Studio voiceover | 80 | 1k characters (≈1 min narrated) | Intelliverse Pro Max |
| Music | 720 | generated minute | Free |
| 3D asset | 250 | asset | Free |
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.