Retrieve a Specific AI Agent

Retrieve detailed information about a single AI agent using its unique ID. This is ideal for inspecting agent capabilities and configuration.

Endpoint: GET /agents/{agent_id}

Description: Use this endpoint to fetch detailed metadata for a specific agent, including its parameters, creation date, and operational status.

Request:

GET /agents/12345 HTTP/1.1
Host: api.supremaui.network
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Response:

{
  "agent_id": "12345",
  "name": "Sentiment Analyzer",
  "description": "Processes text for sentiment analysis",
  "status": "active",
  "capabilities": ["NLP", "Sentiment Analysis"],
  "parameters": {
    "language": ["en", "es", "fr"],
    "max_text_length": 5000
  },
  "created_at": "2024-12-01T12:00:00Z"
}

Last updated