Programmatic Image Workflows
Execute FloImg workflows via REST API. Automate image pipelines, integrate with your applications, and let FloImg handle AI provider credentials.
What You Can Do
Execute Workflows
Run any workflow programmatically. Pass parameters, receive results. Same deterministic transforms, accessible via HTTP.
Manage Storage
Upload, list, and retrieve images from your FloImg storage. Organize assets across projects with a simple REST interface.
No Key Management
FloImg manages API keys for OpenAI, Anthropic, and other providers. You get a single FloImg API key—we handle the rest.
Simple Integration
Execute workflows with a single HTTP request
# Execute a workflow
curl -X POST https://api.floimg.com/v1/workflows/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflowId": "wf_abc123",
"parameters": {
"prompt": "A serene mountain landscape at sunset",
"width": 1200,
"height": 630
}
}'
# Response
{
"executionId": "exec_xyz789",
"status": "completed",
"output": {
"url": "https://storage.floimg.com/images/abc123.png",
"width": 1200,
"height": 630
}
} Rate Limits by Plan
API access starts at $10/month with the Starter plan
| Plan | Rate Limit | Workflow Execution | Storage API |
|---|---|---|---|
| Free | — | — | — |
| Starter | 60/min | ✓ | ✓ |
| Pro | 300/min | ✓ | ✓ |
| Enterprise | Custom | ✓ | ✓ |
Rate limits are per-minute. Requests over the limit receive a 429 response with retry-after header.
Ready to Integrate?
Start with the Starter plan at $10/month, or explore the API docs first.