GPU Studio
Generate images and short video clips using GPU-powered AI models — job-based API with multiple engines and style presets.
What it is
GPU Studio in WAYSCloud lets developers and teams generate images and videos using curated AI models. Submit a job with a prompt, poll for completion, and download results.
All processing runs on dedicated GPU infrastructure. Choose from multiple engines optimized for different output types and quality levels.
When to use
Use this when you need:
- AI-generated images for products, marketing, and content
- Short video clip generation from text prompts
- Batch image generation with style presets
- Programmatic content creation via API
When NOT to use:
- Text generation or chat — use LLM API
- Audio transcription — use Speech Intelligence
How it works
GPU Studio uses a job-based workflow:
- Create a job with an engine, prompt, and optional parameters
- Poll the job status until it completes
- Download generated files from the output URLs
Jobs typically complete in seconds (images) to minutes (video).
Features
WAYSCloud GPU Studio provides curated AI engines for reliable, high-quality generation.
Generation
- Image generation (FLUX Pro, FLUX Fast, and more)
- Video generation from text prompts
- Style presets for consistent output
- Configurable aspect ratios and parameters
API
- Job-based workflow with status polling
- Webhook callbacks for video completion
- Per-job pricing with no subscriptions
- Engine discovery endpoint for available models
Getting started
All GPU Studio functionality is available via the WAYSCloud API.
Create job
Create an image or video generation job.
Image inputs:
prompt(required): Image descriptionaspect_ratio: 1:1, 4:5, 16:9, 9:16 (default: 16:9)negative_prompt: What to avoidseed: Random seed for reproducibility
Video inputs:
prompt(required): Video descriptionduration_sec: Duration in seconds (engine-limited)negative_prompt: What to avoidseed: Random seed for reproducibility
curl -X POST https://api.wayscloud.services/v1/gpu/jobs \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "image",
"engine": "image-flux-fast",
"inputs": {
"prompt": "A serene mountain landscape at sunset",
"aspect_ratio": "16:9"
}
}'List engines
List available GPU engines for image and video generation. No authentication required.
curl https://api.wayscloud.services/v1/gpu/engines \
-H "X-API-Key: YOUR_API_KEY"List presets
List available style presets. No authentication required.
curl https://api.wayscloud.services/v1/gpu/presets \
-H "X-API-Key: YOUR_API_KEY"See all 7 endpoints in the GPU Studio API reference.
Limits and quotas
Limits and quotas depend on the selected plan and region. See the dashboard or API for current constraints.