Skip to content

API Overview

The FloImg API lets you execute workflows, manage storage, and integrate image pipelines into your applications programmatically.

  • 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.)
Terminal window
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
}
}'

All API requests use:

https://api.floimg.com/v1
PlanRequests per Minute
Starter60
Pro300
EnterpriseCustom

See Rate Limits for details on handling limits and retry logic.

  1. Authentication - Get your API key and learn authentication
  2. Endpoints - Full endpoint reference
  3. Examples - Code samples in multiple languages