ReditX Playground
Experiment with prompts, preview generations, and iterate on outputs before wiring them into production.
Open PlaygroundReditX AI Studio is a single endpoint layer over today's best image and video models. Send a prompt, poll a job, get back a finished asset — no GPUs, no orchestration, no vendor sprawl.
Generate, track, and retrieve media without separate integrations for every model provider. Every job follows the same shape: submit, poll status, receive asset.
Generate stills from a text prompt with portrait, landscape, or square framing.
POST /media-generatorDescribe a scene and get a generated clip back, ready to download or embed.
POST /media-generatorAnimate an existing image into motion with a guiding prompt.
POST /media-generatorPoll any job by ID for state, timestamps, and the final asset URL once ready.
GET /media-statusEvery generation type follows the same lifecycle, so your integration code stays the same as you add models.
Send a POST with your prompt, category, and dimensions. ReditX queues the job and returns a jobId immediately.
Check /media-status/{jobId} with your x-api-key. State moves through PENDING → PROCESSING → COMPLETED.
On completion, the response includes a hosted mediaUrl plus metadata like dimensions and generation time.
One header, JSON in, JSON out. Drop it into a Next.js route, a queue worker, or a notebook.
Every request carries one x-api-key header — no OAuth dance, no token refresh.
Long-running generations never block your request thread — submit, then check back when it's ready.
Track spend per key from your dashboard, with logs for every request and response.
curl -X POST https://api.reditxai.com/media-generator \
-H "x-api-key: $REDITX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Cyberpunk skyline at dusk",
"category": "text-to-image",
"dimension": "landscape"
}'
# → { "jobId": "c4a22858-...-e4e2" }
curl https://api.reditxai.com/media-status/c4a22858 \
-H "x-api-key: $REDITX_API_KEY"
# → { "status": "COMPLETED", "mediaUrl": "..." }Try ReditX in the browser, then move to the application when you are ready to manage keys, projects, and production traffic.
Experiment with prompts, preview generations, and iterate on outputs before wiring them into production.
Open PlaygroundLaunch the full ReditX workspace to manage projects, API keys, usage, and billing in one place.
Questions about endpoints, billing, or getting started? Reach out by email and we'll get back to you within a business day.
Create an account, grab an API key, and send your first prompt — the response includes everything you need to fetch the result.