curl --request GET \
--url http://localhost:8080/api/agents/{agentId} \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>'{
"message": "Agent retrieved successfully",
"status": "success",
"error": null,
"data": {
"agent_id": "agent_123",
"organization_id": "org_456",
"agent_name": "Customer Support Agent"
}
}Retrieves a single agent by ID (current behavior).
curl --request GET \
--url http://localhost:8080/api/agents/{agentId} \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>'{
"message": "Agent retrieved successfully",
"status": "success",
"error": null,
"data": {
"agent_id": "agent_123",
"organization_id": "org_456",
"agent_name": "Customer Support Agent"
}
}API Key for MCP server and external service authentication
API Secret for MCP server and external service authentication