Get details of a specific agent.
Path Parameters
agent_id*Agent Id
Response Body
application/json
application/json
curl -X GET "https://example.com/memory/agents/string"{
"id": "string",
"name": "string",
"description": "string",
"agent_config": {},
"roles": [
"string"
],
"tenant_id": "string",
"is_active": true,
"created_at": "2019-08-24T14:15:22Z",
"created_by": "string"
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}Get Agent Evaluation
Get the current evaluation for an agent on a given (dimension, domain) slot. Returns ``{evaluation: <dict>}`` when a current evaluation exists, or ``{evaluation: null}`` on cold-start / unseen slot (HTTP 200 either way). Error codes: - ``404 AGENT_NOT_FOUND``: agent_id does not belong to the current tenant. - ``422``: required query params missing. Mirrors the ``GET /{agent_id}/recall-profile`` pattern (agents.py:230).
Get All Connections
Get all connections (backlinks + forward links). Returns complete bidirectional link graph for this note.