{ "info": { "_postman_id": "bfbb64b4-dcf1-40c0-9ea1-123c9f79426c", "name": "Cursor Cloud Agents API", "description": "Programmatically create and manage Cursor Cloud Agents that work\nautonomously on your repositories. v1 separates a durable agent\nfrom one or more runs: each prompt submission creates a run on the\nagent. Streaming and cancellation are scoped to the active run.\n\n\nContact Support:\n Email: background-agent-feedback@cursor.com", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "lastUpdatedBy": "35240", "uid": "35240-bfbb64b4-dcf1-40c0-9ea1-123c9f79426c" }, "item": [ { "name": "v1", "item": [ { "name": "agents", "item": [ { "name": "{id}", "item": [ { "name": "runs", "item": [ { "name": "{runId}", "item": [ { "name": "stream", "item": [ { "name": "Stream a run", "id": "7cfbab14-5672-4a22-b12a-caebeef271f1", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "text/event-stream" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "id": "d16cc45e-b9d5-4077-aebd-5b77f3f42acb", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." }, { "id": "a14200ea-5539-4d87-a768-6072c0e13d09", "key": "runId", "value": "", "description": "(Required) Unique identifier for the run." } ] }, "description": "Stream Server-Sent Events for one run. Event types are\n`status`, `assistant`, `thinking`, `tool_call`,\n`interaction_update`, `heartbeat`, `result`, `error`, and\n`done`.\n\n- `status` carries `{ runId, status }`. It has no `id` line\n and is replayed at the top of every reconnect.\n- `result` carries `{ runId, status, text?, durationMs?,\n git? }`; `text` is the final assistant reply, `durationMs`\n the wall-clock duration, and `git` mirrors `Run.git`.\n- `interaction_update` carries the richer SDK-shape update\n used by the TypeScript SDK and is emitted alongside the\n simplified events that share the same event id. Use this if\n you want the full SDK stream; otherwise handle the simplified\n events and ignore it.\n\nReconnect with the `Last-Event-ID` header to resume after a\ndisconnect; the event ID must belong to the requested run\notherwise the endpoint returns `400 invalid_last_event_id`.\nResponses include the `X-Cursor-Stream-Retention-Seconds`\nheader; after the retention window the endpoint may return\n`410 stream_expired`. `tool_call` event data uses the\n`RunStreamToolCallData` schema.\n" }, "response": [ { "id": "ca115780-f88a-41da-b809-aefb619c7f5b", "name": "SSE stream of run events.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "text/event-stream" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "text", "header": [ { "key": "Content-Type", "value": "text/event-stream" }, { "disabled": false, "description": { "content": "Server-side stream retention window in seconds.", "type": "text/plain" }, "key": "X-Cursor-Stream-Retention-Seconds", "value": "" } ], "cookie": [], "responseTime": null, "body": "", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-ca115780-f88a-41da-b809-aefb619c7f5b" }, { "id": "9b3fdde3-150b-48bb-adb8-15bef4c3cffe", "name": "Validation error or malformed request body.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-9b3fdde3-150b-48bb-adb8-15bef4c3cffe" }, { "id": "c5d51a50-a26f-4255-879b-76afae3ff9c3", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c5d51a50-a26f-4255-879b-76afae3ff9c3" }, { "id": "746df314-12d7-4ec4-b871-510ca2333853", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-746df314-12d7-4ec4-b871-510ca2333853" }, { "id": "0f3ef224-1e7a-4760-9925-ab93b14e776a", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-0f3ef224-1e7a-4760-9925-ab93b14e776a" }, { "id": "4d6d9969-ba8b-4485-943a-f34a98e5dd22", "name": "Stream retention window has elapsed (`stream_expired`).", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Gone", "code": 410, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-4d6d9969-ba8b-4485-943a-f34a98e5dd22" }, { "id": "c7cc5b0b-5362-4b30-8263-cf423a189c71", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c7cc5b0b-5362-4b30-8263-cf423a189c71" }, { "id": "fcd422b6-dde2-422e-a030-f4cd413d7374", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "description": "Resume from a previously received event ID for this run.", "key": "Last-Event-ID", "value": "" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/stream", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "stream" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-fcd422b6-dde2-422e-a030-f4cd413d7374" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-7cfbab14-5672-4a22-b12a-caebeef271f1" } ], "id": "d8524034-1202-483d-8cdf-bfc13d8dd2a7", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d8524034-1202-483d-8cdf-bfc13d8dd2a7" }, { "name": "cancel", "item": [ { "name": "Cancel a run", "id": "ea6ca92e-5543-45b3-b738-54186b80ae6c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "id": "6b04ada7-5d28-4c7a-bb8e-84d79e77fa52", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." }, { "id": "98a0ee6b-1dca-4112-bd90-323b35260ecd", "key": "runId", "value": "", "description": "(Required) Unique identifier for the run." } ] }, "description": "Cancel the active run for an agent. Cancellation is terminal \u2014\nthe run transitions to `CANCELLED`. Cancelling a run that is\nalready terminal or was never active returns\n`409 run_not_cancellable`. To continue the conversation,\ncreate a new run on the same agent.\n" }, "response": [ { "id": "04efa92d-526f-4daf-b02c-c3810b5106d7", "name": "Run cancelled successfully.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-04efa92d-526f-4daf-b02c-c3810b5106d7" }, { "id": "c2ca29ac-66a8-4ca0-8c48-1363fcdc980b", "name": "Invalid or missing API key.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c2ca29ac-66a8-4ca0-8c48-1363fcdc980b" }, { "id": "2451472b-1948-495b-bc9a-df83b23ae9ad", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-2451472b-1948-495b-bc9a-df83b23ae9ad" }, { "id": "100c4cc0-0b15-45fe-b82b-28fe2b27e24c", "name": "Agent or run not found.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-100c4cc0-0b15-45fe-b82b-28fe2b27e24c" }, { "id": "16bb6e3a-f313-40ef-a31d-25aa946096e4", "name": "Resource state conflict (`agent_busy`, `agent_archived`, `agent_id_conflict`, or `run_not_cancellable`).", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-16bb6e3a-f313-40ef-a31d-25aa946096e4" }, { "id": "94f1dd0e-7f6d-4741-bafb-b711f889dc5f", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-94f1dd0e-7f6d-4741-bafb-b711f889dc5f" }, { "id": "b8199ca0-05b2-48b2-b025-1b1fa7000144", "name": "Internal server error.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId/cancel", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId", "cancel" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b8199ca0-05b2-48b2-b025-1b1fa7000144" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-ea6ca92e-5543-45b3-b738-54186b80ae6c" } ], "id": "e0c876d4-0cc8-4032-8795-ef56e5246ce3", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e0c876d4-0cc8-4032-8795-ef56e5246ce3" }, { "name": "Get a run", "id": "ebc7f70d-5f6b-4572-b50b-dd27492eccc2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "id": "553db977-8930-4cb1-8cdd-8bea687f6300", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." }, { "id": "63e10590-a9cc-494c-8478-dc6a537b9578", "key": "runId", "value": "", "description": "(Required) Unique identifier for the run." } ] }, "description": "Retrieve status and timestamps for a specific run." }, "response": [ { "id": "4f354370-11f8-4120-8a87-46bb01390348", "name": "Run retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"agentId\": \"\",\n \"status\": \"CREATING\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"durationMs\": \"\",\n \"result\": \"\",\n \"git\": {\n \"branches\": [\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n }\n ]\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-4f354370-11f8-4120-8a87-46bb01390348" }, { "id": "1492ec5c-3ea3-4c56-8377-88e448926586", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-1492ec5c-3ea3-4c56-8377-88e448926586" }, { "id": "26b324ba-af99-4a4c-a1b2-d62781698246", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-26b324ba-af99-4a4c-a1b2-d62781698246" }, { "id": "25fb9db3-7b8d-470b-a8e4-152611ec560e", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-25fb9db3-7b8d-470b-a8e4-152611ec560e" }, { "id": "f31743ab-f846-4269-9dd6-2b5fb3b3b7b6", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-f31743ab-f846-4269-9dd6-2b5fb3b3b7b6" }, { "id": "e58d8d1d-ef79-4251-850a-a3f0595d5575", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs/:runId", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs", ":runId" ], "variable": [ { "key": "id" }, { "key": "runId" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e58d8d1d-ef79-4251-850a-a3f0595d5575" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-ebc7f70d-5f6b-4572-b50b-dd27492eccc2" } ], "id": "49478164-49a7-4d77-bdc4-ffdbf75c57fe", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-49478164-49a7-4d77-bdc4-ffdbf75c57fe" }, { "name": "Create a run", "id": "a9940392-a400-4d80-879d-963eac2afc8b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "id": "7409df8b-21d5-4f85-8ec1-bc95ee57c298", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Send a follow-up prompt to an existing active agent. The new\nrun uses the agent's current conversation and workspace state.\nOnly one run can be active per agent at a time.\n" }, "response": [ { "id": "b3d265c7-7f65-4b9c-ba0c-325f5ccf5e38", "name": "Run created and enqueued.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Created", "code": 201, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"run\": {\n \"id\": \"\",\n \"agentId\": \"\",\n \"status\": \"ERROR\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"durationMs\": \"\",\n \"result\": \"\",\n \"git\": {\n \"branches\": [\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n }\n ]\n }\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b3d265c7-7f65-4b9c-ba0c-325f5ccf5e38" }, { "id": "349b9748-071c-4ed6-96c9-8138fadb6cbc", "name": "Validation error or malformed request body.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-349b9748-071c-4ed6-96c9-8138fadb6cbc" }, { "id": "417d7d12-f3ec-4691-bd51-041faf0db7e8", "name": "Invalid or missing API key.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-417d7d12-f3ec-4691-bd51-041faf0db7e8" }, { "id": "b5cd3dc0-f0c3-4a80-b49a-7163ac8e6a7b", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b5cd3dc0-f0c3-4a80-b49a-7163ac8e6a7b" }, { "id": "905d84b7-423b-48cd-bcec-ac3f722d9444", "name": "Agent or run not found.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-905d84b7-423b-48cd-bcec-ac3f722d9444" }, { "id": "8b4c5f40-1a2d-458e-b1c2-511780153e64", "name": "Resource state conflict (`agent_busy`, `agent_archived`, `agent_id_conflict`, or `run_not_cancellable`).", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-8b4c5f40-1a2d-458e-b1c2-511780153e64" }, { "id": "001eac36-c3f0-4662-849c-2c460c51daf3", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-001eac36-c3f0-4662-849c-2c460c51daf3" }, { "id": "148da1dc-9cde-4771-8815-db3f1839d37e", "name": "Internal server error.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"quis Excepteur\",\n \"mimeType\": 35456870\n },\n {\n \"data\": \"dolore consectetur ullamco laborum voluptate\",\n \"mimeType\": \"nostrud dolore anim\"\n }\n ]\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"laborum_\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"nisi5\": \"\",\n \"et_4\": \"\"\n }\n }\n ],\n \"mode\": \"plan\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-148da1dc-9cde-4771-8815-db3f1839d37e" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-a9940392-a400-4d80-879d-963eac2afc8b" }, { "name": "List runs", "id": "8d2a4b93-309b-47de-bd32-326a53a474f9", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "id": "3165eaa2-7a7e-43b6-9f03-215b1cc82697", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "List runs for an agent, newest first." }, "response": [ { "id": "0cb4479e-9f31-4983-a16d-72174db30095", "name": "Runs retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"items\": [\n {\n \"id\": \"\",\n \"agentId\": \"\",\n \"status\": \"FINISHED\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"durationMs\": \"\",\n \"result\": \"\",\n \"git\": {\n \"branches\": [\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n }\n ]\n }\n },\n {\n \"id\": \"\",\n \"agentId\": \"\",\n \"status\": \"FINISHED\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"durationMs\": \"\",\n \"result\": \"\",\n \"git\": {\n \"branches\": [\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n }\n ]\n }\n }\n ],\n \"nextCursor\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-0cb4479e-9f31-4983-a16d-72174db30095" }, { "id": "1fc6745f-4d53-4733-bfc4-55f61bb79129", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-1fc6745f-4d53-4733-bfc4-55f61bb79129" }, { "id": "65f72f61-3a8a-4df7-afb1-be65c1d060da", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-65f72f61-3a8a-4df7-afb1-be65c1d060da" }, { "id": "bfc89f0f-8486-48d0-ba55-e9b20727d4c0", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-bfc89f0f-8486-48d0-ba55-e9b20727d4c0" }, { "id": "69331261-a264-4460-a665-70339962e7c2", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-69331261-a264-4460-a665-70339962e7c2" }, { "id": "41804c5a-6b97-4c48-9ab9-fa8df87e88ff", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/runs?limit=20&cursor=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "runs" ], "query": [ { "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-41804c5a-6b97-4c48-9ab9-fa8df87e88ff" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-8d2a4b93-309b-47de-bd32-326a53a474f9" } ], "id": "3da4aacf-ec3e-4573-b711-12848140a501", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-3da4aacf-ec3e-4573-b711-12848140a501" }, { "name": "usage", "item": [ { "name": "Get agent usage", "id": "5aede7f4-189f-4046-b895-fe8c10d268cb", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "id": "ec9e3cce-2074-4269-9d21-420e9f147e71", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Retrieve token usage for an agent, broken down per run.\n`totalUsage` sums input, output, and cache token counts across\nevery run on the agent, and `runs` lists the same breakdown for\neach run. Token usage mirrors the `tokenUsage` shape on the team\nusage events endpoint.\n\nThis endpoint is in early access. When it isn't enabled for the\naccount it returns `403 feature_unavailable`. An unknown `runId`\nreturns `404 run_not_found`.\n" }, "response": [ { "id": "c1b4f2f9-1193-4839-bf4e-7bbc52a85c5c", "name": "Usage retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"totalUsage\": {\n \"inputTokens\": \"\",\n \"outputTokens\": \"\",\n \"cacheWriteTokens\": \"\",\n \"cacheReadTokens\": \"\",\n \"totalTokens\": \"\"\n },\n \"runs\": [\n {\n \"id\": \"\",\n \"usage\": {\n \"inputTokens\": \"\",\n \"outputTokens\": \"\",\n \"cacheWriteTokens\": \"\",\n \"cacheReadTokens\": \"\",\n \"totalTokens\": \"\"\n },\n \"usageUuid\": \"\"\n },\n {\n \"id\": \"\",\n \"usage\": {\n \"inputTokens\": \"\",\n \"outputTokens\": \"\",\n \"cacheWriteTokens\": \"\",\n \"cacheReadTokens\": \"\",\n \"totalTokens\": \"\"\n },\n \"usageUuid\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c1b4f2f9-1193-4839-bf4e-7bbc52a85c5c" }, { "id": "56da971e-8636-42c6-8541-5a7ed23b55e7", "name": "Validation error or malformed request body.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-56da971e-8636-42c6-8541-5a7ed23b55e7" }, { "id": "2cc5333e-b18a-41d7-a0bc-8fbfe92cdda6", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-2cc5333e-b18a-41d7-a0bc-8fbfe92cdda6" }, { "id": "bf8fe943-c321-4fe9-bb34-76befe3f53ff", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-bf8fe943-c321-4fe9-bb34-76befe3f53ff" }, { "id": "4a80cb52-2658-416e-935c-38e46d65ad96", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-4a80cb52-2658-416e-935c-38e46d65ad96" }, { "id": "d4aa6634-783e-4746-90fc-8a9ee6e8fce9", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d4aa6634-783e-4746-90fc-8a9ee6e8fce9" }, { "id": "b9b551f1-2e3a-4331-bada-777dbacbea91", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/usage?runId=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "usage" ], "query": [ { "description": "Scope usage to a single run. Omit to return usage for every run on the agent.", "key": "runId", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b9b551f1-2e3a-4331-bada-777dbacbea91" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5aede7f4-189f-4046-b895-fe8c10d268cb" } ], "id": "1473fba6-13dc-4c91-80ef-aabdf5100156", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-1473fba6-13dc-4c91-80ef-aabdf5100156" }, { "name": "archive", "item": [ { "name": "Archive an agent", "id": "f2aa054e-38c3-4b12-834c-db03b024065c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "id": "4f3f4204-732a-4cc0-9b0e-4afd0795183c", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Archive an agent. Archived agents remain readable but cannot accept new runs until unarchived." }, "response": [ { "id": "76b8f6a7-4fe5-4a8d-aaa7-43fb1c5dcc74", "name": "Agent archived successfully.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-76b8f6a7-4fe5-4a8d-aaa7-43fb1c5dcc74" }, { "id": "c6f070ee-4913-4ad2-a660-31a7bee742b9", "name": "Invalid or missing API key.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c6f070ee-4913-4ad2-a660-31a7bee742b9" }, { "id": "f6c27932-eeea-409a-892f-3ea1cfd05419", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-f6c27932-eeea-409a-892f-3ea1cfd05419" }, { "id": "5b228ada-483f-4f6e-be9d-85b68504b570", "name": "Agent or run not found.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5b228ada-483f-4f6e-be9d-85b68504b570" }, { "id": "634e23f2-bca6-46c0-979a-e47b81a39da0", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-634e23f2-bca6-46c0-979a-e47b81a39da0" }, { "id": "5b993084-66df-4de4-857e-8b925c0c4c77", "name": "Internal server error.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/archive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "archive" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5b993084-66df-4de4-857e-8b925c0c4c77" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-f2aa054e-38c3-4b12-834c-db03b024065c" } ], "id": "380110b5-fbd6-438b-bbeb-2d63115654d6", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-380110b5-fbd6-438b-bbeb-2d63115654d6" }, { "name": "unarchive", "item": [ { "name": "Unarchive an agent", "id": "38cae8fc-354b-467a-a4e4-4c68865ee899", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "id": "0485219d-52de-4d65-89e0-54f5ea68cea2", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Unarchive an agent so it can accept new runs again." }, "response": [ { "id": "a8bac5be-7d30-4328-9076-4f99c64cf82d", "name": "Agent unarchived successfully.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-a8bac5be-7d30-4328-9076-4f99c64cf82d" }, { "id": "9f7fec72-59f3-4bee-8784-af2ef20c9bfb", "name": "Invalid or missing API key.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-9f7fec72-59f3-4bee-8784-af2ef20c9bfb" }, { "id": "446a82c1-3b45-4803-9902-ef2f7f301d29", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-446a82c1-3b45-4803-9902-ef2f7f301d29" }, { "id": "7e1e64f6-d348-4b1a-a2ff-ee45dbc35f11", "name": "Agent or run not found.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-7e1e64f6-d348-4b1a-a2ff-ee45dbc35f11" }, { "id": "add0562b-090c-4f53-9382-e9e0dedd8dc2", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-add0562b-090c-4f53-9382-e9e0dedd8dc2" }, { "id": "a30c3183-e185-4790-a766-09ff80b80f97", "name": "Internal server error.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/unarchive", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "unarchive" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-a30c3183-e185-4790-a766-09ff80b80f97" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-38cae8fc-354b-467a-a4e4-4c68865ee899" } ], "id": "206dc5e9-6928-43e4-8747-69205ff15da8", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-206dc5e9-6928-43e4-8747-69205ff15da8" }, { "name": "artifacts", "item": [ { "name": "download", "item": [ { "name": "Download an artifact", "id": "d10ef7c7-ed00-4d4b-8632-0ac0a7f032c8", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "id": "41678fd5-4434-48f1-8aa9-fd749b1e9108", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Retrieve a temporary 15-minute presigned S3 URL for an\nartifact. The `path` query parameter must be a relative path\nunder `artifacts/` returned by GET /v1/agents/{id}/artifacts.\n" }, "response": [ { "id": "d7e64f3d-fa76-416c-a5d9-7d085eaaa8bd", "name": "Presigned URL retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"url\": \"\",\n \"expiresAt\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d7e64f3d-fa76-416c-a5d9-7d085eaaa8bd" }, { "id": "8d9095ad-dcbb-427d-92f5-41a63bbf8e0d", "name": "Validation error or malformed request body.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-8d9095ad-dcbb-427d-92f5-41a63bbf8e0d" }, { "id": "7416eeb2-e16f-4e1e-ba79-7c8562062bd7", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-7416eeb2-e16f-4e1e-ba79-7c8562062bd7" }, { "id": "d5c9d0a9-ebbf-4ae2-aa55-7b55fce47a18", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d5c9d0a9-ebbf-4ae2-aa55-7b55fce47a18" }, { "id": "5cb13f4f-355b-4d51-8284-a382840c2f68", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5cb13f4f-355b-4d51-8284-a382840c2f68" }, { "id": "879db7c0-6186-4813-8ae1-a52decee8397", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-879db7c0-6186-4813-8ae1-a52decee8397" }, { "id": "568ee890-66ac-42fa-be63-5c66391036f6", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts/download?path=", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts", "download" ], "query": [ { "description": "(Required) Relative artifact path under `artifacts/`.", "key": "path", "value": "" } ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-568ee890-66ac-42fa-be63-5c66391036f6" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d10ef7c7-ed00-4d4b-8632-0ac0a7f032c8" } ], "id": "d3fe45ed-1ecc-4fa1-bb53-e08425fc7c01", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d3fe45ed-1ecc-4fa1-bb53-e08425fc7c01" }, { "name": "List artifacts", "id": "ec8c33e5-ed01-4684-8182-f1102ff5987d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "id": "2764fc51-be56-4692-997e-e9cfa0bb8bcf", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "List artifacts produced by an agent. Each artifact's `path` is\nrelative to the workspace's `artifacts/` directory. Pass that\n`path` to GET /v1/agents/{id}/artifacts/download to obtain a\npresigned download URL.\n" }, "response": [ { "id": "2d84e147-978c-485c-b0b1-85db67316676", "name": "Artifacts retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"items\": [\n {\n \"path\": \"\",\n \"sizeBytes\": \"\",\n \"updatedAt\": \"\"\n },\n {\n \"path\": \"\",\n \"sizeBytes\": \"\",\n \"updatedAt\": \"\"\n }\n ]\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-2d84e147-978c-485c-b0b1-85db67316676" }, { "id": "d1dd06f5-b6ad-41f9-987a-cc2a369ee758", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d1dd06f5-b6ad-41f9-987a-cc2a369ee758" }, { "id": "1d7215ed-0e6d-49b5-9271-deccf92fb21f", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-1d7215ed-0e6d-49b5-9271-deccf92fb21f" }, { "id": "c54bfac4-f1de-44e9-b3ea-bbf50dd9fd2c", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c54bfac4-f1de-44e9-b3ea-bbf50dd9fd2c" }, { "id": "2007b60e-fa62-49ec-903e-12ae3bdfc4e8", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-2007b60e-fa62-49ec-903e-12ae3bdfc4e8" }, { "id": "e1cb58dc-c7fd-43ec-a408-bb08b22de2d9", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id/artifacts", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id", "artifacts" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e1cb58dc-c7fd-43ec-a408-bb08b22de2d9" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-ec8c33e5-ed01-4684-8182-f1102ff5987d" } ], "id": "142c76c5-b526-4f6e-b254-37d61fa82f1f", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-142c76c5-b526-4f6e-b254-37d61fa82f1f" }, { "name": "Get an agent", "id": "32bc15b5-f96d-4d67-87c1-fd1927caa40b", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "id": "2c7c2a44-810a-4c5f-9ac9-e0c1034651b9", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Retrieve durable metadata for an agent. Execution status lives on runs." }, "response": [ { "id": "3de321c0-fd7d-4852-815f-2b12dfda53f1", "name": "Agent retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"status\": \"ARCHIVED\",\n \"env\": {\n \"type\": \"machine\",\n \"name\": \"\"\n },\n \"url\": \"\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"name\": \"\",\n \"latestRunId\": \"\",\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": \"\",\n \"autoCreatePR\": \"\",\n \"skipReviewerRequest\": \"\",\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ]\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-3de321c0-fd7d-4852-815f-2b12dfda53f1" }, { "id": "215ce26e-3f3c-4e8e-ba5d-48a1728a36b9", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-215ce26e-3f3c-4e8e-ba5d-48a1728a36b9" }, { "id": "e2206ba3-7751-42ae-b28d-4114bfe4e5a0", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e2206ba3-7751-42ae-b28d-4114bfe4e5a0" }, { "id": "70168c5b-86e8-4e43-88f8-8b4af1c63041", "name": "Agent or run not found.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-70168c5b-86e8-4e43-88f8-8b4af1c63041" }, { "id": "093186c2-f3ff-4ce2-b197-2dc237aea187", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-093186c2-f3ff-4ce2-b197-2dc237aea187" }, { "id": "d56ace1d-9659-473a-ade7-6b06ddd1a9f8", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d56ace1d-9659-473a-ade7-6b06ddd1a9f8" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-32bc15b5-f96d-4d67-87c1-fd1927caa40b" }, { "name": "Delete an agent permanently", "id": "f0ec0707-6281-407a-b575-f4f18d91bc24", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "id": "3b46c4f3-940f-445e-a1ca-93df048d8688", "key": "id", "value": "", "description": "(Required) Unique identifier for the agent." } ] }, "description": "Permanently delete an agent. This action is irreversible. Use POST /v1/agents/{id}/archive for reversible removal." }, "response": [ { "id": "e841adc7-15c5-497f-b336-64c525e14b3c", "name": "Agent deleted successfully.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e841adc7-15c5-497f-b336-64c525e14b3c" }, { "id": "90215daa-49c2-42f9-91fd-71d6df56a543", "name": "Invalid or missing API key.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-90215daa-49c2-42f9-91fd-71d6df56a543" }, { "id": "e4445f4d-9980-4a91-bdb2-6dadee0b1447", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e4445f4d-9980-4a91-bdb2-6dadee0b1447" }, { "id": "9680fcd6-b59a-41fc-a7d3-6b37f43c2bb8", "name": "Agent or run not found.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-9680fcd6-b59a-41fc-a7d3-6b37f43c2bb8" }, { "id": "5f339098-d99b-40b2-965a-5e5e899d1e46", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5f339098-d99b-40b2-965a-5e5e899d1e46" }, { "id": "b0d82f6d-37e0-40d5-9f9d-e1cc36515f3e", "name": "Internal server error.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents/:id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents", ":id" ], "variable": [ { "key": "id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b0d82f6d-37e0-40d5-9f9d-e1cc36515f3e" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-f0ec0707-6281-407a-b575-f4f18d91bc24" } ], "id": "e3f5d277-3789-4ad6-8dbf-c6a220296776", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-e3f5d277-3789-4ad6-8dbf-c6a220296776" }, { "name": "Create an agent", "id": "60c36333-5b10-42f5-b838-2f1a5588073e", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] }, "description": "Create a Cloud Agent and immediately enqueue its initial run.\nThe response contains both the durable `agent` and the initial\n`run`.\n" }, "response": [ { "id": "d0658f80-3193-4558-a47f-731d0fddbebf", "name": "Agent created and initial run enqueued.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Created", "code": 201, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"agent\": {\n \"id\": \"\",\n \"status\": \"ACTIVE\",\n \"env\": {\n \"type\": \"machine\",\n \"name\": \"\"\n },\n \"url\": \"\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"name\": \"\",\n \"latestRunId\": \"\",\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": \"\",\n \"autoCreatePR\": \"\",\n \"skipReviewerRequest\": \"\",\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ]\n },\n \"run\": {\n \"id\": \"\",\n \"agentId\": \"\",\n \"status\": \"FINISHED\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"durationMs\": \"\",\n \"result\": \"\",\n \"git\": {\n \"branches\": [\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"repoUrl\": \"\",\n \"branch\": \"\",\n \"prUrl\": \"\"\n }\n ]\n }\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-d0658f80-3193-4558-a47f-731d0fddbebf" }, { "id": "4147dcc0-3682-433a-a7b2-45fc614168b8", "name": "Validation error or malformed request body.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-4147dcc0-3682-433a-a7b2-45fc614168b8" }, { "id": "4045edc8-cfd5-4975-a4a9-f73847f8defc", "name": "Invalid or missing API key.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-4045edc8-cfd5-4975-a4a9-f73847f8defc" }, { "id": "85a55e62-4c7c-4825-85dd-e83edeec81b9", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-85a55e62-4c7c-4825-85dd-e83edeec81b9" }, { "id": "da48011b-9e12-406b-8660-bc3285feeb2e", "name": "Resource state conflict (`agent_busy`, `agent_archived`, `agent_id_conflict`, or `run_not_cancellable`).", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-da48011b-9e12-406b-8660-bc3285feeb2e" }, { "id": "93e46360-6096-4c6c-b832-71569c295302", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-93e46360-6096-4c6c-b832-71569c295302" }, { "id": "a805f8e1-e083-4a9e-b346-fd5b9180c82f", "name": "Internal server error.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "body": { "mode": "raw", "raw": "{\n \"prompt\": {\n \"text\": \"\",\n \"images\": [\n {\n \"data\": \"irure\",\n \"mimeType\": -58427696.9220094\n },\n {\n \"data\": -20048807,\n \"mimeType\": 37063340.47539058\n }\n ]\n },\n \"model\": {\n \"id\": \"\",\n \"params\": [\n {\n \"id\": \"\",\n \"value\": \"\"\n },\n {\n \"id\": \"\",\n \"value\": \"\"\n }\n ]\n },\n \"name\": \"\",\n \"agentId\": \"bc-49CefFaE-2FdA-afC1-EccB-FdC93F9Fdc3A\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"repos\": [\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n },\n {\n \"url\": \"\",\n \"startingRef\": \"\",\n \"prUrl\": \"\"\n }\n ],\n \"workOnCurrentBranch\": false,\n \"autoCreatePR\": false,\n \"skipReviewerRequest\": false,\n \"envVars\": {\n \"inb\": \"\",\n \"anim_e0\": \"\",\n \"aliquip_26f\": \"\",\n \"elitb07\": \"\",\n \"nisi_7\": \"\",\n \"anim_a_\": \"\",\n \"irure_60f\": \"\",\n \"occaecat2b\": \"\",\n \"eu__\": \"\",\n \"pariatur_7\": \"\",\n \"eu2c\": \"\",\n \"mollit_9\": \"\",\n \"reprehenderit5\": \"\",\n \"Excepteur_3_\": \"\",\n \"aliquip6_e\": \"\",\n \"pariatur__ca\": \"\",\n \"Ut_33\": \"\",\n \"reprehenderitd\": \"\",\n \"qui_c\": \"\",\n \"Loremb_1\": \"\",\n \"consequatfe_\": \"\",\n \"do1\": \"\",\n \"mollit9f\": \"\",\n \"minim6a_\": \"\",\n \"laborum_7_f\": \"\",\n \"eu_a\": \"\",\n \"in_078\": \"\",\n \"enim_5\": \"\",\n \"minim6_\": \"\",\n \"id__5\": \"\",\n \"culpa1b\": \"\",\n \"quis_92\": \"\",\n \"dolor_28\": \"\",\n \"adipisicingb7\": \"\",\n \"labore9\": \"\",\n \"sint_9\": \"\",\n \"qui_7\": \"\",\n \"reprehenderit90b\": \"\",\n \"Utb1\": \"\",\n \"non_517\": \"\",\n \"nostrud_54\": \"\",\n \"officia2\": \"\",\n \"esse_0\": \"\",\n \"sed_d9e\": \"\"\n },\n \"mcpServers\": [\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"Excepteur_13a\": \"\"\n }\n },\n {\n \"name\": \"\",\n \"command\": \"\",\n \"type\": \"stdio\",\n \"args\": [\n \"\",\n \"\"\n ],\n \"env\": {\n \"non5_2\": \"\"\n }\n }\n ],\n \"customSubagents\": [\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n },\n {\n \"name\": \"\",\n \"description\": \"\",\n \"prompt\": \"\",\n \"model\": \"inherit\"\n }\n ],\n \"mode\": \"agent\"\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/agents", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-a805f8e1-e083-4a9e-b346-fd5b9180c82f" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-60c36333-5b10-42f5-b838-2f1a5588073e" }, { "name": "List agents", "id": "b10c3bce-94e4-4df2-974b-04120c471db2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] }, "description": "List agents for the authenticated user, newest first." }, "response": [ { "id": "eb90b34e-a85e-4bc7-9c01-01e95f8432ed", "name": "Agents retrieved successfully.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"items\": [\n {\n \"id\": \"\",\n \"status\": \"ARCHIVED\",\n \"env\": {\n \"type\": \"pool\",\n \"name\": \"\"\n },\n \"url\": \"\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"name\": \"\",\n \"latestRunId\": \"\"\n },\n {\n \"id\": \"\",\n \"status\": \"ARCHIVED\",\n \"env\": {\n \"type\": \"machine\",\n \"name\": \"\"\n },\n \"url\": \"\",\n \"createdAt\": \"\",\n \"updatedAt\": \"\",\n \"name\": \"\",\n \"latestRunId\": \"\"\n }\n ],\n \"nextCursor\": \"\"\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-eb90b34e-a85e-4bc7-9c01-01e95f8432ed" }, { "id": "5169e808-71d2-4a08-9c73-f646799f87f9", "name": "Validation error or malformed request body.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-5169e808-71d2-4a08-9c73-f646799f87f9" }, { "id": "1c8dad02-e281-4d81-b78f-b4f5234c04ae", "name": "Invalid or missing API key.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-1c8dad02-e281-4d81-b78f-b4f5234c04ae" }, { "id": "907a3149-213a-438a-85dc-9ec9fa02f5e6", "name": "Authenticated but insufficient permissions, plan required, or feature unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-907a3149-213a-438a-85dc-9ec9fa02f5e6" }, { "id": "6ab06ea4-e8dc-400a-86b0-2c08bce78956", "name": "Rate limit exceeded. Response includes `Retry-After`, `X-RateLimit-Limit`, `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-6ab06ea4-e8dc-400a-86b0-2c08bce78956" }, { "id": "0bc32d5b-b87e-48ce-af28-2fb56ab12f03", "name": "Internal server error.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: basic", "key": "Authorization", "value": "Basic " } ], "url": { "raw": "{{baseUrl}}/v1/agents?limit=20&cursor=&prUrl=&includeArchived=true", "host": [ "{{baseUrl}}" ], "path": [ "v1", "agents" ], "query": [ { "description": "Number of agents to return.", "key": "limit", "value": "20" }, { "description": "Pagination cursor from the previous response.", "key": "cursor", "value": "" }, { "description": "Filter agents by GitHub pull request URL.", "key": "prUrl", "value": "" }, { "description": "Whether to include archived agents.", "key": "includeArchived", "value": "true" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"helpUrl\": \"\",\n \"provider\": \"\"\n }\n}", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-0bc32d5b-b87e-48ce-af28-2fb56ab12f03" } ], "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-b10c3bce-94e4-4df2-974b-04120c471db2" } ], "id": "eefb1c66-6d2c-4433-a0be-6ae6f792fcba", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-eefb1c66-6d2c-4433-a0be-6ae6f792fcba" } ], "id": "c8c26af6-634e-441d-8c12-394d1b8aa749", "createdAt": "2026-07-28T01:00:55.000Z", "updatedAt": "2026-07-28T01:00:55.000Z", "uid": "35240-c8c26af6-634e-441d-8c12-394d1b8aa749" } ], "auth": { "type": "basic", "basic": [ { "key": "username", "value": "{{basicAuthUsername}}", "type": "string" }, { "key": "password", "value": "{{basicAuthPassword}}", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://api.cursor.com" } ] }