GET
/
runs
/
{run_id}
/
events
curl --request GET \
  --url http://localhost:8000/runs/{run_id}/events
{
  "events": [
    {
      "type": "<string>",
      "message": {
        "parts": [
          {
            "name": "<string>",
            "content_type": "<string>",
            "content": "<string>",
            "content_encoding": "plain",
            "content_url": "<string>"
          }
        ],
        "created_at": "2023-11-07T05:31:56Z",
        "completed_at": "2023-11-07T05:31:56Z"
      }
    }
  ]
}

Path Parameters

run_id
string
required

UUID of the run.

Response

200
application/json

List of run events

The response is of type object.