API Overview
Integrate Ubex workflows into your applications.
Base URL
https://workflow.ubex.ai/api/v1
Authentication
All API requests require authentication via API key:
Authorization: Bearer YOUR_API_KEY
Rate Limits
| Plan | Requests/minute |
|---|---|
| Free | 10 |
| Pro | 100 |
| Enterprise | Unlimited |
Response Format
All responses are JSON:
{
"success": true,
"data": { ... },
"error": null
}
Error Handling
Errors include a code and message:
{
"success": false,
"data": null,
"error": {
"code": "INVALID_API_KEY",
"message": "The provided API key is invalid"
}
}