Skip to main content
GET
/
runs
/
{run_id}
/
events
List run events
curl --request GET \
  --url http://localhost:8000/runs/{run_id}/events
{
  "events": [
    {
      "type": "<string>",
      "message": {
        "role": "<string>",
        "parts": [
          {
            "content_type": "text/plain",
            "name": "<string>",
            "content": "<string>",
            "content_encoding": "plain",
            "content_url": "<string>",
            "metadata": {
              "kind": "citation",
              "start_index": 123,
              "end_index": 123,
              "url": "<string>",
              "title": "<string>",
              "description": "<string>"
            }
          }
        ],
        "created_at": "2023-11-07T05:31:56Z",
        "completed_at": "2023-11-07T05:31:56Z"
      }
    }
  ]
}

Path Parameters

run_id
string<uuid>
required

UUID of the run. Identifier of a run

Response

List of run events

events
object[]
required
  • Option 1
  • Option 2
  • Option 3
  • Option 4
  • Option 5
  • Option 6
  • Option 7
  • Option 8
  • Option 9
  • Option 10
  • Option 11