Agentic DevelopmentSessions

List your sessions

List agent sessions you own, newest first.

GET
/v1/sessions

List agent sessions you own, newest first.

AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Query Parameters

org?string

Organization name to filter by

project?string

Project name to filter by; requires org

state?array<>|

Lifecycle states to list; repeat the parameter to combine them. Defaults to active.

cursor?string

Opaque pagination cursor from a previous response

limit?integer

Maximum number of items to return (1–100)

Formatint32
Range1 <= value <= 100
Default20

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/v1/sessions"
{  "pagination": {    "has_more": true,    "next_cursor": "string",    "total_count": 0  },  "sessions": [    {      "archived_at": "string",      "created_at": "string",      "id": "string",      "last_turn_ended_at": "string",      "project": {        "id": "string",        "name": "string",        "org": "string"      }    }  ]}