API Overview
The FloImg API lets you execute workflows, manage storage, and integrate image pipelines into your applications programmatically.
What You Can Do
Section titled “What You Can Do”- Execute Workflows - Run any saved workflow with custom parameters
- Manage Storage - Upload, list, and retrieve images
- No Key Management - FloImg handles AI provider credentials (OpenAI, Anthropic, etc.)
Quick Example
Section titled “Quick Example”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 mountain landscape at sunset", "width": 1200, "height": 630 } }'Base URL
Section titled “Base URL”All API requests use:
https://api.floimg.com/v1Rate Limits
Section titled “Rate Limits”| Plan | Requests per Minute |
|---|---|
| Starter | 60 |
| Pro | 300 |
| Enterprise | Custom |
See Rate Limits for details on handling limits and retry logic.
Next Steps
Section titled “Next Steps”- Authentication - Get your API key and learn authentication
- Endpoints - Full endpoint reference
- Examples - Code samples in multiple languages