Web Studio Media Gateway Workspace
Web Studio is the media gateway workspace at studio.logox.top. Image, video, and voice creation are all completed here: you can create directly on the page or use the API.
Entry Points
Web Capabilities
- AI Image: text-to-image, image editing, mask editing, and upscaling.
- AI Video: text-to-video, image-to-video, reference image video, first/last frame video, video remix, and video extension.
- Text to Speech: generate playable and downloadable audio with available languages and voices.
- Video Editing: combine multiple videos, audio tracks, and subtitles into a complete work.
- My Works: view, download, publish, or delete generated results.
Media gateway API keys must be created from the API Access page on studio.logox.top. Tokens created in the logox.top console cannot be used for the media gateway. The media gateway Base URL is https://media.logox.top.
Image API Endpoint
List Image Models
bash
curl https://media.logox.top/v1/models \
-H "Authorization: Bearer sk-logox-your-key"Generate an Image
bash
curl https://media.logox.top/v1/images/generations \
-H "Authorization: Bearer sk-logox-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "imagen-4.0-generate-001",
"prompt": "High-end skincare product ad, white marble table, soft natural light, clean background, realistic photography",
"size": "1024x1024",
"n": 1
}'Edit an Image
bash
curl https://media.logox.top/v1/images/edits \
-H "Authorization: Bearer sk-logox-your-key" \
-F "model=imagen-4.0-generate-001" \
-F "prompt=Replace the background with a clean technology exhibition stand while keeping the product" \
-F "image=@product.png"Video API Endpoint
Generate a Video
bash
curl https://media.logox.top/v1/videos/generations \
-H "Authorization: Bearer sk-logox-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "veo-3.1-generate-001",
"prompt": "8-second cinematic aerial shot of a rainy neon city at night, slow push-in, realistic photography",
"aspect_ratio": "16:9",
"duration_seconds": 8
}'Query a Video Task
bash
curl https://media.logox.top/v1/videos/generations/TASK_ID \
-H "Authorization: Bearer sk-logox-your-key"Download the Result
bash
curl -L https://media.logox.top/v1/videos/generations/TASK_ID/content \
-H "Authorization: Bearer sk-logox-your-key" \
-o result.mp4Audio API Endpoint
List Voices
bash
curl https://media.logox.top/v1/audio/voices \
-H "Authorization: Bearer sk-logox-your-key"Text to Speech
bash
curl https://media.logox.top/v1/audio/speech \
-H "Authorization: Bearer sk-logox-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-2.5-flash-preview-tts",
"voice": "Kore",
"input": "Welcome to Logox Studio, where you can create images, videos, and voices."
}'Speech to Text
bash
curl https://media.logox.top/v1/audio/transcriptions \
-H "Authorization: Bearer sk-logox-your-key" \
-F "model=gemini-2.5-flash" \
-F "file=@speech.mp3"