Letta · Example Payload

Letta Retrieve Agent Example

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Letta Retrieve Agent Example is an example object payload from Letta, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathauthrequestresponse

Example Payload

Raw ↑
{
  "operation": "Retrieve Agent",
  "method": "GET",
  "path": "/v1/agents/{agent_id}",
  "auth": "Bearer token (LETTA_API_KEY)",
  "request": {
    "method": "GET",
    "path": "/v1/agents/agent-2f6d4a13-5e9c-4b7e-a3f1-7b8e9c1d2e34",
    "headers": {
      "Authorization": "Bearer $LETTA_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "agent-2f6d4a13-5e9c-4b7e-a3f1-7b8e9c1d2e34",
      "name": "support-agent-1",
      "memory": {
        "blocks": [
          {
            "label": "persona",
            "value": "..."
          }
        ]
      },
      "tools": [
        {
          "name": "send_message"
        },
        {
          "name": "core_memory_append"
        }
      ]
    }
  }
}