usage:read 권한이 필요합니다.
Run 목록
Run 하나 조회
runId를 사용할 수 있습니다. 응답에는 이벤트가 최대 100개까지 포함되며, 더 남아 있으면 hasMoreEvents가 true입니다.
이벤트 계속 조회
hasMoreEvents가 true이면 다음 경로를 호출합니다.
nextCursor를 다음 요청에 그대로 전달합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run 목록과 이벤트 타임라인을 커서 방식으로 조회합니다.
usage:read 권한이 필요합니다.
GET /openapi/v1/runs?limit=25&status=FAILED
X-API-Key: YOUR_WORKSPACE_API_KEY
| 파라미터 | 설명 |
|---|---|
limit | 1부터 100까지 지정합니다. 기본값은 25입니다. |
cursor | 이전 응답의 nextCursor를 그대로 전달합니다. |
agentId | Lynx 내부 Agent UUID로 필터링합니다. |
status | RUNNING, COMPLETED, FAILED, CANCELLED 중 하나입니다. |
{
"items": [
{
"id": "ebd7c740-e284-4db1-86c0-6c1a78eb30f8",
"runId": "run_01JZQ3VY4K",
"status": "FAILED",
"startedAt": "2026-07-23T08:00:00.000Z",
"endedAt": "2026-07-23T08:00:02.120Z",
"agent": {
"id": "aa971534-cce6-4ca8-a950-99f8e779ae0a",
"name": "support-agent"
},
"usage": {
"promptTokens": 240,
"completionTokens": 32,
"totalTokens": 272,
"cost": 0.0021
}
}
],
"nextCursor": null
}
GET /openapi/v1/runs/run_01JZQ3VY4K
runId를 사용할 수 있습니다. 응답에는 이벤트가 최대 100개까지 포함되며, 더 남아 있으면 hasMoreEvents가 true입니다.
hasMoreEvents가 true이면 다음 경로를 호출합니다.
GET /openapi/v1/runs/run_01JZQ3VY4K/events?limit=100
nextCursor를 다음 요청에 그대로 전달합니다.
{
"items": [
{
"id": "63782fe2-11ed-49a7-869e-4da55a445641",
"eventId": "evt_llm_01",
"eventType": "LLM_CALL",
"label": "Choose payment action",
"timestamp": "2026-07-23T08:00:01.000Z",
"payload": {
"model": "model-name"
}
}
],
"nextCursor": null
}