The Operator Uplift platform provides a comprehensive API for interacting with AI agents powered by Gemini 3 Pro.
All API requests require authentication using an API key:
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.operatoruplift.created.app/v1/agentsGET /api/v1/agents
Returns a list of available AI agents.
POST /api/v1/agents
Create a new AI agent with custom configuration.
GET /api/v1/agents/:id
Retrieve details for a specific agent.
POST /api/v1/tasks
Execute a task using an AI agent.
Request Body:
{
"agentId": "agent-123",
"task": "Analyze this document",
"parameters": {
"model": "gemini-3-pro",
"temperature": 0.7
}
}Response:
{
"taskId": "task-456",
"status": "processing",
"result": null
}- 100 requests per minute for free tier
- 1000 requests per minute for pro tier
400- Bad Request401- Unauthorized403- Forbidden404- Not Found429- Rate Limit Exceeded500- Internal Server Error
Official SDKs available for:
- JavaScript/TypeScript
- Python
- Go
For API support, contact: api-support@operatoruplift.created.app