AgenticFleet API Reference

Welcome to the AgenticFleet API reference. This documentation provides detailed information about the AgenticFleet API, including all available endpoints, methods, and data structures.

Overview

AgenticFleet provides a comprehensive API for:

  • Creating and managing AI agents
  • Orchestrating agent teams
  • Handling tasks and workflows
  • Managing agent memory and context
  • Real-time chat interactions

Authentication

AgenticFleet supports multiple authentication methods:

# Using API Key
from agentic_fleet import AgenticFleet

client = AgenticFleet(api_key="your_api_key")

# Using OAuth
client = AgenticFleet(
    client_id="your_client_id",
    client_secret="your_client_secret"
)

Base URL

The base URL for all API endpoints is:

https://api.agenticfleet.com/v1

Rate Limits

  • Free tier: 60 requests per minute
  • Pro tier: 300 requests per minute
  • Enterprise tier: Custom limits

Error Handling

All API endpoints use standard HTTP response codes:

  • 200: Success
  • 400: Bad Request
  • 401: Unauthorized
  • 403: Forbidden
  • 404: Not Found
  • 429: Too Many Requests
  • 500: Internal Server Error

Error responses include detailed information:

{
  "error": {
    "code": "invalid_request",
    "message": "Invalid request parameters",
    "details": {
      "field": "agent_id",
      "reason": "Agent ID not found"
    }
  }
}