Letta · Example Payload

Letta Retrieve Run Example

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Letta Retrieve Run 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 Run",
  "method": "GET",
  "path": "/v1/runs/{run_id}",
  "auth": "Bearer token (LETTA_API_KEY)",
  "request": {
    "method": "GET",
    "path": "/v1/runs/run-77a3",
    "headers": {
      "Authorization": "Bearer $LETTA_API_KEY"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "id": "run-77a3",
      "status": "completed",
      "usage": {
        "total_tokens": 1326
      },
      "step_count": 1
    }
  }
}