List Sessions
GET
/v1/agents/sessionsGET
/v1/agents/sessionsYour instance endpoint, shown on the instance page in the dashboard. Each instance has its own host; there is no shared API host.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
tenantId | query | string | No | |
agentId | query | string | No | |
status | query | "SESSION_STATUS_UNSPECIFIED" | "SESSION_STATUS_CREATED" | "SESSION_STATUS_RUNNING" | "SESSION_STATUS_WAITING_FOR_INPUT" | "SESSION_STATUS_WAITING_FOR_APPROVAL" | "SESSION_STATUS_COMPLETED" | "SESSION_STATUS_FAILED" | "SESSION_STATUS_CANCELLED" | No | |
limit | query | integer | No | |
offset | query | integer | No |
Responses
200 List sessions
| Property | Type | Description |
|---|---|---|
sessions | object[] | |
total | integer |
default An unexpected error response.
| Property | Type | Description |
|---|---|---|
code | integer | |
message | string | |
details | object[] |
Request
curl -X GET "http://localhost:8089/v1/agents/sessions" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"const response = await fetch("http://localhost:8089/v1/agents/sessions", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
});
const data = await response.json();import requests
response = requests.get(
"http://localhost:8089/v1/agents/sessions",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json",
},
)
data = response.json()Response
{
"sessions": [
{
"id": "string",
"tenantId": "string",
"agentId": "string",
"status": "SESSION_STATUS_UNSPECIFIED",
"turnCount": 0,
"totalTokens": 0,
"createdAt": "2024-01-01T00:00:00Z",
"updatedAt": "2024-01-01T00:00:00Z",
"completedAt": "2024-01-01T00:00:00Z",
"turns": []
}
],
"total": 0
}{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
