🚀 We just open-sourced Saiki - our customizable AI agent with support for MCP! Click here to check it out on GitHub, and give us a star!
{ "agent": {} }
Retrieve details of a specific agent
Retrieve detailed information about a specific agent by its ID.
The unique identifier of the agent
Whether to pretty-print the JSON response
The complete agent details including configuration
curl https://www.trytruffle.ai/api/v1/agents/agent_123 \ -H "x-api-key: YOUR_API_KEY"
{ "success": true, "data": { "agent_id": "agent_123", "name": "Customer Support Agent", "config": { "agent_id": "agent_123", "name": "Customer Support Agent", "instruction": "You are a helpful customer support agent", "model": "gpt-4", "tool": "search" }, "created_at": "2024-02-07T20:43:00Z", "updated_at": "2024-02-07T20:43:00Z" }, "status": 200 }