Key API Features
Everything you need to build powerful AI image generation into your applications
High-Performance
Fast, reliable image generation with optimized response times and high availability.
Simple Integration
RESTful API with easy-to-use endpoints, comprehensive documentation, and code examples.
Multiple Models
Access to powerful models including flux-pro, flux-1.1-pro, and flux-1.1-pro-ultra.
Secure & Reliable
Enterprise-grade security with API key authentication and rate limiting.
Usage Tracking
Monitor your API usage and credit consumption in real-time from your dashboard.
Fast Response
Optimized infrastructure for quick image generation, typically under 10 seconds.
How It Works
Getting started with the PixelDojo API is simple
Subscribe
Create an account and subscribe to access powerful AI models and get your API key.
Integrate
Add the API to your application using our documentation and code examples.
Generate
Start generating high-quality AI images directly within your application.
API Endpoints
Powerful endpoints for all your AI image generation needs
Image Generation
Generate high-quality images from text prompts using various models and parameters.
POST /api/v1/flux
{
"prompt": "your detailed prompt here",
"model": "flux-pro",
"aspect_ratio": "1:1",
"num_outputs": 1
}
Flux Ultra + Raw Mode
Use Flux Ultra with Raw mode for maximum quality and photorealistic outputs.
POST /api/v1/flux
{
"prompt": "your detailed prompt here",
"model": "flux-1.1-pro-ultra",
"raw": true,
"aspect_ratio": "1:1"
}
Quick Start
Integrate in minutes with our simple API
// Generate an image using the PixelDojo API
async function generateImage(prompt) {
const response = await fetch('https://pixeldojo.ai/api/v1/flux', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify({
prompt,
model: 'flux-pro',
aspect_ratio: '1:1'
})
});
return await response.json();
}
API Pricing
Simple subscription plans with all the API access you need
One Plan. Unlimited Possibilities.
Access 60+ AI models for images and videos. Less than $1/day.
Featured Tools
Only 24 spots left at current pricing
Frequently Asked Questions
Common questions about the PixelDojo API
What are the rate limits?
Our API rate limits start at 10 requests per minute. Reach out if you need higher limits for your use case.
How are credits consumed?
Standard image generation costs 1 credit per image. Flux Ultra costs 1.5 credits per image. Purchase additional credits anytime.
Can I use the API commercially?
Yes, all subscription plans include commercial usage rights. Use the API in your applications, websites, and services.
What image formats are supported?
The API supports PNG and JPEG output formats. Specify the desired format and quality in your requests.