{ "info": { "_postman_id": "3f419f3f-ceec-4a3c-8494-06a50c3b9f3e", "name": "Coasty Public keys schedules API", "description": "# Coasty Public API\n\nCoasty is a Computer Use Agent (CUA) platform: predict actions from screenshots,\nprovision managed VMs, and run scheduled automation against them.\n\n## Authentication\n\nAll endpoints (except `/v1/triggers/webhook/{webhook_id}` and health checks) require an API key.\nPass it as either:\n\n- `X-API-Key: sk-coasty-live-...` (or `sk-coasty-test-...` for sandbox)\n- `Authorization: Bearer sk-coasty-live-...`\n\nThe external webhook endpoint does not use an API key, but it is authenticated:\nsend the HMAC-SHA256 `Coasty-Signature` credential documented on that operation.\n\nTest-mode keys (`sk-coasty-test-*`) hit the same validation paths as live keys but\nreturn mock VMs / mock action results and never bill credits \u2014 ideal for CI.\n\n## Pricing & budgeting\n\nPer-call rates (subject to change \u2014 see `lib/pricing/tiers.ts METERED_RATES`):\n\n| Endpoint | Credits |\n|---|---|\n| `POST /v1/predict` | ~5 |\n| `POST /v1/sessions` | 10 |\n| `POST /v1/sessions/{id}/predict` | ~4 |\n| `POST /v1/ground` | ~3 |\n| `POST /v1/parse` | 0 (free) |\n\nLong-running CUA jobs orchestrated through the dashboard (not this API) bill at\n10 credits/minute with a 20-credit minimum. Subscription tiers (`free | starter |\nprofessional | enterprise`) gate feature availability (e.g. custom system prompts),\nschedule counts, and the maximum trajectory length.\n\n## Errors\n\nEvery error response uses the same envelope:\n\n```json\n{\n \"error\": {\n \"code\": \"INSUFFICIENT_CREDITS\",\n \"message\": \"Need 5, have 2.\",\n \"type\": \"billing_error\",\n \"request_id\": \"req_a1b2c3d4e5f6\",\n \"retryable\": false,\n \"retry_with_same_idempotency_key\": false\n }\n}\n```\n\nInclude the `request_id` in support requests.\n\n## Idempotency\n\nOperations marked `x-idempotency: reserve-and-replay` accept `Idempotency-Key:\n<\u2264128 chars of [A-Za-z0-9_-:]>`. Replays\nof the same key + identical body return the original response (with\n`X-Coasty-Idempotent-Replay: true`) for 24 h. Reusing the key with a different body\nis a 422 `IDEMPOTENCY_KEY_REUSED`.\nOperations marked `x-idempotency: webhook-payload-dedup` instead deduplicate the\nsame webhook id + identical raw body for 60 seconds; they do not accept an\nIdempotency-Key.\n\n## Clients & MCP\n\nUse the HTTP API directly from any language. Official TypeScript and Python SDKs\nare not currently published; generate a client from this OpenAPI document if needed.\n- MCP server: `npx -y @coasty/mcp` (see `x-mcp-server`)\n\n## Reference\n\nComplete (machine-readable) spec is hosted at `/.well-known/openapi.json` and\n`/openapi.json` (Stripe / Vercel conventions).\n\nContact Support:\n Name: Coasty Developer Support\n Email: founders@coasty.ai", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "lastUpdatedBy": "35240", "uid": "35240-3f419f3f-ceec-4a3c-8494-06a50c3b9f3e" }, "item": [ { "name": "v1", "item": [ { "name": "schedules", "item": [ { "name": "health", "item": [ { "name": "Schedules API health check", "id": "b234e12d-8a1e-4143-b8c1-6f89ae2ee456", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/health", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", "health" ] } }, "response": [ { "id": "5a7302d3-7b45-4166-8447-97c7aad1ef45", "name": "OK.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/health", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", "health" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"status\": \"ok\",\n \"api_version\": \"\",\n \"service\": \"\"\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5a7302d3-7b45-4166-8447-97c7aad1ef45" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b234e12d-8a1e-4143-b8c1-6f89ae2ee456" } ], "id": "56925a00-a235-4e2f-bda0-f00c802fb982", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-56925a00-a235-4e2f-bda0-f00c802fb982" }, { "name": "{schedule_id}", "item": [ { "name": "pause", "item": [ { "name": "Pause a schedule", "id": "67fc037a-17f6-4d96-baa2-6f34ba5a253c", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "id": "a522bd62-e78c-4c1a-8ce6-0962d884a6b5", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "791fb66c-7a87-451a-8d80-a5b7da947a72", "name": "Paused.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"ex__\": \"\",\n \"consectetur_368\": \"\",\n \"ad4f8\": \"\"\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-791fb66c-7a87-451a-8d80-a5b7da947a72" }, { "id": "8e7b5043-6bfe-47ed-a7e0-1ec196740d3f", "name": "Invalid request body or parameters.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8e7b5043-6bfe-47ed-a7e0-1ec196740d3f" }, { "id": "6d4a7881-cf75-4d6f-ae7b-3710ddd7fc09", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-6d4a7881-cf75-4d6f-ae7b-3710ddd7fc09" }, { "id": "bb500a2f-4adf-4d48-8904-25c7c9f15ae2", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-bb500a2f-4adf-4d48-8904-25c7c9f15ae2" }, { "id": "649ef9bd-cb19-422f-8af4-04312a4fae1f", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-649ef9bd-cb19-422f-8af4-04312a4fae1f" }, { "id": "9b5fb04a-9ca1-41ee-8edc-12d6d721dd51", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-9b5fb04a-9ca1-41ee-8edc-12d6d721dd51" }, { "id": "5e452306-6535-48ef-b1e9-f8cfb15e2052", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5e452306-6535-48ef-b1e9-f8cfb15e2052" }, { "id": "cb7e4e9a-484c-4d3c-9501-6cd6398cba7b", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-cb7e4e9a-484c-4d3c-9501-6cd6398cba7b" }, { "id": "dbe5a8ec-dfa7-4d68-affb-23ea1a55b5e5", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-dbe5a8ec-dfa7-4d68-affb-23ea1a55b5e5" }, { "id": "4f082883-432e-4c0c-bb40-7ab7633ae319", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4f082883-432e-4c0c-bb40-7ab7633ae319" }, { "id": "2446e7f1-f09b-4e6d-bf63-e836085d177b", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-2446e7f1-f09b-4e6d-bf63-e836085d177b" }, { "id": "c228a45b-a24f-45c8-81d1-abf81cae1866", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-c228a45b-a24f-45c8-81d1-abf81cae1866" }, { "id": "020a24bb-9329-4676-8649-ff464cb7570d", "name": "An upstream dependency timed out.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/pause", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "pause" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-020a24bb-9329-4676-8649-ff464cb7570d" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-67fc037a-17f6-4d96-baa2-6f34ba5a253c" } ], "id": "a046f45b-546b-4c46-ac2e-24a0da071d36", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a046f45b-546b-4c46-ac2e-24a0da071d36" }, { "name": "resume", "item": [ { "name": "Resume a paused schedule", "id": "464bf157-9a52-4ab5-a467-aabc66bf6939", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "POST", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "id": "f4be8a8f-9445-4624-93e0-88d87940346f", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "13d1d147-76fa-4e04-b283-07c97b5ad9a8", "name": "Resumed.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"ex__\": \"\",\n \"consectetur_368\": \"\",\n \"ad4f8\": \"\"\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-13d1d147-76fa-4e04-b283-07c97b5ad9a8" }, { "id": "5ba2c9a9-7ddc-48c4-8342-d7dae469c336", "name": "Invalid request body or parameters.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5ba2c9a9-7ddc-48c4-8342-d7dae469c336" }, { "id": "dc6205d3-ff08-4989-b505-b5928b1ba20c", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-dc6205d3-ff08-4989-b505-b5928b1ba20c" }, { "id": "f760c80d-c3e1-4558-9356-2d2d01d9e512", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-f760c80d-c3e1-4558-9356-2d2d01d9e512" }, { "id": "59a4b191-8dfb-4f5b-bef2-14b5b68d36da", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-59a4b191-8dfb-4f5b-bef2-14b5b68d36da" }, { "id": "f843a948-abae-4c47-8eef-9a5f93305d1c", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-f843a948-abae-4c47-8eef-9a5f93305d1c" }, { "id": "bcb3283e-5479-42c5-9a78-1bf2436c3e90", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-bcb3283e-5479-42c5-9a78-1bf2436c3e90" }, { "id": "c78c727d-d241-463f-9aec-5ced333a836c", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-c78c727d-d241-463f-9aec-5ced333a836c" }, { "id": "9bb9ac20-c897-4e8c-a171-1b716d9d8793", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-9bb9ac20-c897-4e8c-a171-1b716d9d8793" }, { "id": "377aaf6f-1970-467d-91fb-9e7962cdeb1f", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-377aaf6f-1970-467d-91fb-9e7962cdeb1f" }, { "id": "8ca82b34-0de0-4992-8bef-1b13b94512de", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8ca82b34-0de0-4992-8bef-1b13b94512de" }, { "id": "5d8786f3-65b6-441e-a053-40ec1c7782cd", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5d8786f3-65b6-441e-a053-40ec1c7782cd" }, { "id": "07bcb6d8-76b8-45bf-bc3b-135117d2b25c", "name": "An upstream dependency timed out.", "originalRequest": { "method": "POST", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/resume", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "resume" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-07bcb6d8-76b8-45bf-bc3b-135117d2b25c" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-464bf157-9a52-4ab5-a467-aabc66bf6939" } ], "id": "d571f6ff-cf4b-485d-8f0d-383abb469e89", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-d571f6ff-cf4b-485d-8f0d-383abb469e89" }, { "name": "run", "item": [ { "name": "Trigger a schedule run immediately", "id": "5efe2c02-24b7-4472-acf7-c149501966b4", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "id": "6bdc2e14-371c-4af6-a423-06fbc863e69f", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "2e0be49f-c63a-4b0b-842b-559023788d0f", "name": "Run queued.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Idempotent-Replay", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Idempotency-Status", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"schedule_id\": \"\",\n \"run_id\": \"\",\n \"status\": \"completed\",\n \"message\": \"\",\n \"request_id\": \"\"\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-2e0be49f-c63a-4b0b-842b-559023788d0f" }, { "id": "bb26c059-79b9-44be-a557-fa3ba38aa263", "name": "Invalid request body or parameters.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-bb26c059-79b9-44be-a557-fa3ba38aa263" }, { "id": "9373b277-f73d-4d92-b12e-981089f08549", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-9373b277-f73d-4d92-b12e-981089f08549" }, { "id": "5094d169-a559-44e1-b3d2-96998abbf546", "name": "Insufficient credits to perform the operation. Top up via /credits or upgrade subscription.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Payment Required", "code": 402, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5094d169-a559-44e1-b3d2-96998abbf546" }, { "id": "e437f695-0fdc-432e-9429-75683168cbc6", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e437f695-0fdc-432e-9429-75683168cbc6" }, { "id": "b659de9a-648c-41b4-a340-e6707da2ce59", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b659de9a-648c-41b4-a340-e6707da2ce59" }, { "id": "7183e1ea-0087-47d4-920e-ae9241bb490e", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7183e1ea-0087-47d4-920e-ae9241bb490e" }, { "id": "b352cef7-ac6e-434b-be6c-5b0b432e62b5", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b352cef7-ac6e-434b-be6c-5b0b432e62b5" }, { "id": "37ef0ebe-0f71-44a3-bfcb-6214e7169f0f", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-37ef0ebe-0f71-44a3-bfcb-6214e7169f0f" }, { "id": "245dd4f2-1c5c-4c39-82a2-a3ac1e542e2b", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-245dd4f2-1c5c-4c39-82a2-a3ac1e542e2b" }, { "id": "72051d28-c514-4f3e-8295-1ee4172fb5aa", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-72051d28-c514-4f3e-8295-1ee4172fb5aa" }, { "id": "1ade4823-ace6-4e41-a204-e48c9c2d9e90", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-1ade4823-ace6-4e41-a204-e48c9c2d9e90" }, { "id": "7694ffe1-b869-48ef-ab26-a6a9968e5ad9", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7694ffe1-b869-48ef-ab26-a6a9968e5ad9" }, { "id": "26fc7c0b-4cfc-4e28-8156-5f4353f82392", "name": "An upstream dependency timed out.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"task_prompt_override\": \"\",\n \"triggered_context\": null\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/run", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "run" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-26fc7c0b-4cfc-4e28-8156-5f4353f82392" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5efe2c02-24b7-4472-acf7-c149501966b4" } ], "id": "bdcbbc13-ed1e-4867-a7f2-978aaa34a99d", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-bdcbbc13-ed1e-4867-a7f2-978aaa34a99d" }, { "name": "runs", "item": [ { "name": "{run_id}", "item": [ { "name": "Get a single run", "id": "53625224-ec43-443f-ab9d-62400eec46ca", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "id": "7ab8266e-fb4f-49ed-96d4-90767788b8eb", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." }, { "id": "19a03465-6da6-416c-901e-a3beb1a99695", "key": "run_id", "value": "v", "description": "(Required) " } ] } }, "response": [ { "id": "cd307218-2a4d-4fc8-95a4-74ee3e93812f", "name": "Run.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"schedule_id\": \"\",\n \"status\": \"insufficient_credits\",\n \"trigger\": \"webhook\",\n \"executed_at\": \"\",\n \"duration_seconds\": \"\",\n \"credits_charged\": \"\",\n \"error\": \"\"\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-cd307218-2a4d-4fc8-95a4-74ee3e93812f" }, { "id": "8b4fc14d-859d-4921-bf45-ffdc9c70d663", "name": "Invalid request body or parameters.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8b4fc14d-859d-4921-bf45-ffdc9c70d663" }, { "id": "3ac2f670-e98f-4b29-a513-4a9a8d3e8437", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3ac2f670-e98f-4b29-a513-4a9a8d3e8437" }, { "id": "40458e49-83b3-45fb-83ec-6d218246a79e", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-40458e49-83b3-45fb-83ec-6d218246a79e" }, { "id": "6b04c9d7-18af-4e4b-89c7-37cb11bd6bb3", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-6b04c9d7-18af-4e4b-89c7-37cb11bd6bb3" }, { "id": "0c914440-6338-4a11-8ab3-403992a79b6d", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-0c914440-6338-4a11-8ab3-403992a79b6d" }, { "id": "ef797102-973b-489e-ac15-09f6e72b075a", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ef797102-973b-489e-ac15-09f6e72b075a" }, { "id": "b115d2fd-267a-4b02-a9d1-1c1c6527ad81", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b115d2fd-267a-4b02-a9d1-1c1c6527ad81" }, { "id": "db856b1a-28ef-45b6-aebc-555da14089ba", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-db856b1a-28ef-45b6-aebc-555da14089ba" }, { "id": "ccc8a68a-a0c9-4355-b489-ea75b127e6dc", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ccc8a68a-a0c9-4355-b489-ea75b127e6dc" }, { "id": "c7825b8a-e58e-400d-873c-e3ccfdacf381", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-c7825b8a-e58e-400d-873c-e3ccfdacf381" }, { "id": "e566eede-78df-4f5f-bbce-ab9a376b7455", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e566eede-78df-4f5f-bbce-ab9a376b7455" }, { "id": "e26fd08e-a633-4cc1-8264-468cefa1edcc", "name": "An upstream dependency timed out.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs/:run_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs", ":run_id" ], "variable": [ { "key": "schedule_id" }, { "key": "run_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e26fd08e-a633-4cc1-8264-468cefa1edcc" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-53625224-ec43-443f-ab9d-62400eec46ca" } ], "id": "73b21e33-30ce-4047-afe4-ad16a9870758", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-73b21e33-30ce-4047-afe4-ad16a9870758" }, { "name": "List historical runs of a schedule", "id": "e0fff31d-03d5-45c6-93dc-7b112e68429d", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "id": "0d71695e-7568-4295-8742-1d5efc03274f", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "2885b9fc-cdee-4ca8-868e-18d4f46cda9a", "name": "Runs.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"id\": \"\",\n \"schedule_id\": \"\",\n \"status\": \"skipped\",\n \"trigger\": \"webhook\",\n \"executed_at\": \"\",\n \"duration_seconds\": \"\",\n \"credits_charged\": \"\",\n \"error\": \"\"\n },\n {\n \"id\": \"\",\n \"schedule_id\": \"\",\n \"status\": \"cancelled\",\n \"trigger\": \"triggered\",\n \"executed_at\": \"\",\n \"duration_seconds\": \"\",\n \"credits_charged\": \"\",\n \"error\": \"\"\n }\n ],\n \"request_id\": \"\",\n \"next_cursor\": \"\",\n \"has_more\": false\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-2885b9fc-cdee-4ca8-868e-18d4f46cda9a" }, { "id": "68de557b-1f37-4e9a-a0b5-b570a9e72950", "name": "Invalid request body or parameters.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-68de557b-1f37-4e9a-a0b5-b570a9e72950" }, { "id": "7b3cea76-84af-447d-8a43-3283dcfd7f02", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7b3cea76-84af-447d-8a43-3283dcfd7f02" }, { "id": "80e6bc01-ffd0-48cb-87f6-d91cd6d41726", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-80e6bc01-ffd0-48cb-87f6-d91cd6d41726" }, { "id": "4c757399-d62e-4102-95d9-ad3df80af9e0", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4c757399-d62e-4102-95d9-ad3df80af9e0" }, { "id": "8e69b148-d28c-416c-91b2-2816bce62be9", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8e69b148-d28c-416c-91b2-2816bce62be9" }, { "id": "77038aa6-5f9a-4852-8d09-5eafc11b88ad", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-77038aa6-5f9a-4852-8d09-5eafc11b88ad" }, { "id": "ccc16973-6995-4283-ba6d-ba946d6888b7", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ccc16973-6995-4283-ba6d-ba946d6888b7" }, { "id": "7898d4cf-222b-429d-9e5f-eee01844639a", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7898d4cf-222b-429d-9e5f-eee01844639a" }, { "id": "92d167a0-eb70-4a47-b8ce-eafad48d63be", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-92d167a0-eb70-4a47-b8ce-eafad48d63be" }, { "id": "3ee9f9a6-1489-41cb-a01c-fc1693375766", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3ee9f9a6-1489-41cb-a01c-fc1693375766" }, { "id": "b6358c3f-d6e0-4c51-90f9-b771e374d022", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b6358c3f-d6e0-4c51-90f9-b771e374d022" }, { "id": "ba7c17b5-c53d-4960-99b3-8ef67c8d467c", "name": "An upstream dependency timed out.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id/runs?cursor=&status=running&limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id", "runs" ], "query": [ { "key": "cursor", "value": "" }, { "key": "status", "value": "running" }, { "key": "limit", "value": "50" } ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ba7c17b5-c53d-4960-99b3-8ef67c8d467c" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e0fff31d-03d5-45c6-93dc-7b112e68429d" } ], "id": "7ab8f861-010f-4a2f-9a06-61697b8685ee", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7ab8f861-010f-4a2f-9a06-61697b8685ee" }, { "name": "Get schedule details", "id": "ecf28d9e-07b7-45f4-907d-7be02954ad49", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "id": "17beab17-ee2a-4848-a887-601f3cf9bc5f", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "b8e64d0d-227a-4da5-b695-3a3f9501222c", "name": "Schedule.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"ex__\": \"\",\n \"consectetur_368\": \"\",\n \"ad4f8\": \"\"\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b8e64d0d-227a-4da5-b695-3a3f9501222c" }, { "id": "8ca0287b-e8d6-4f66-9852-11e9b9ef2e5d", "name": "Invalid request body or parameters.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8ca0287b-e8d6-4f66-9852-11e9b9ef2e5d" }, { "id": "4c97725b-03f4-4b11-82b6-7d57d8d29d55", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4c97725b-03f4-4b11-82b6-7d57d8d29d55" }, { "id": "67aa8fb4-8134-44ba-b84b-1f21cc32a786", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-67aa8fb4-8134-44ba-b84b-1f21cc32a786" }, { "id": "7f3d74c5-7c51-41df-be84-290374badf89", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7f3d74c5-7c51-41df-be84-290374badf89" }, { "id": "1921eb0c-19ae-49af-bc7e-7d14c9b5dc64", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-1921eb0c-19ae-49af-bc7e-7d14c9b5dc64" }, { "id": "d7ab24a9-1710-4c34-bdb4-9345659567a4", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-d7ab24a9-1710-4c34-bdb4-9345659567a4" }, { "id": "f560bf34-8f5a-4c58-b61b-e804f4f3e941", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-f560bf34-8f5a-4c58-b61b-e804f4f3e941" }, { "id": "ae3ccf39-6c79-4513-9f3a-9fda288ffb85", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ae3ccf39-6c79-4513-9f3a-9fda288ffb85" }, { "id": "043d1145-747a-46a2-b3f0-77c6bf453617", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-043d1145-747a-46a2-b3f0-77c6bf453617" }, { "id": "580d05fc-a4ce-40dc-8de7-080bb4d48da5", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-580d05fc-a4ce-40dc-8de7-080bb4d48da5" }, { "id": "6ef45308-1a73-4dcf-8b21-e4a7ac205014", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-6ef45308-1a73-4dcf-8b21-e4a7ac205014" }, { "id": "ff924354-c9d0-4d98-9ef5-fdd58bdb7079", "name": "An upstream dependency timed out.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ff924354-c9d0-4d98-9ef5-fdd58bdb7079" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-ecf28d9e-07b7-45f4-907d-7be02954ad49" }, { "name": "Update a schedule", "id": "3d1b6c36-00bf-43fe-aac4-5b6b4ea213e6", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "id": "dd8723e4-b76a-40b8-a04c-b788866c0f4d", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "92441e96-5c4e-4efe-917f-f7f45f12e345", "name": "Updated.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"ex__\": \"\",\n \"consectetur_368\": \"\",\n \"ad4f8\": \"\"\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-92441e96-5c4e-4efe-917f-f7f45f12e345" }, { "id": "e0b799e5-b152-4d5f-bdd9-473f1d2634a3", "name": "Invalid request body or parameters.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e0b799e5-b152-4d5f-bdd9-473f1d2634a3" }, { "id": "c226a2b8-14f7-41ff-8d16-475b8f0e6741", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-c226a2b8-14f7-41ff-8d16-475b8f0e6741" }, { "id": "540d7255-014d-4773-8d1a-12c883323cbe", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-540d7255-014d-4773-8d1a-12c883323cbe" }, { "id": "b5cf5505-d403-4b2b-aac4-bbb93dde48bd", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b5cf5505-d403-4b2b-aac4-bbb93dde48bd" }, { "id": "d40e761d-da56-43a2-9d14-06c2c02638b5", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-d40e761d-da56-43a2-9d14-06c2c02638b5" }, { "id": "dcaf1a98-f0ae-4f0f-b7a9-c13b2a96e49c", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-dcaf1a98-f0ae-4f0f-b7a9-c13b2a96e49c" }, { "id": "b44bbf2c-c6ab-4221-acbb-99813f1e1504", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b44bbf2c-c6ab-4221-acbb-99813f1e1504" }, { "id": "36ec8d99-188c-4dc9-aa9b-51a044bb76ec", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-36ec8d99-188c-4dc9-aa9b-51a044bb76ec" }, { "id": "29ebcac0-dc43-4c3d-b612-387634e0f61f", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-29ebcac0-dc43-4c3d-b612-387634e0f61f" }, { "id": "a5206cb6-8b99-4997-8c13-f646a56afc4a", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a5206cb6-8b99-4997-8c13-f646a56afc4a" }, { "id": "2e38bfb5-2d50-41cf-a10b-476cffbc29da", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-2e38bfb5-2d50-41cf-a10b-476cffbc29da" }, { "id": "9b925287-8f38-4b1e-b656-81d56f9784bc", "name": "An upstream dependency timed out.", "originalRequest": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"max_consecutive_failures\": \"\",\n \"enabled\": \"\",\n \"metadata\": {\n \"Lorem_a72\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-9b925287-8f38-4b1e-b656-81d56f9784bc" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3d1b6c36-00bf-43fe-aac4-5b6b4ea213e6" }, { "name": "Delete a schedule", "id": "862f4534-a448-4769-a13b-6a01441534f5", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "id": "ad329728-0023-4661-9423-0c0b6e497720", "key": "schedule_id", "value": "53fdDCB9-95a1-614d-F7C5-AaEeb7e5290f", "description": "(Required) Schedule UUID, or `sch_test_<8-32 lowercase hex>` for sandbox keys." } ] } }, "response": [ { "id": "99dc1b41-d7ba-4d66-9f9d-fa4ae022cacc", "name": "Deleted.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"deleted\": \"\",\n \"schedule_id\": \"\",\n \"request_id\": \"\"\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-99dc1b41-d7ba-4d66-9f9d-fa4ae022cacc" }, { "id": "e3399861-51d1-4d48-afda-a635474323ca", "name": "Invalid request body or parameters.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-e3399861-51d1-4d48-afda-a635474323ca" }, { "id": "a9c8bdeb-81eb-41fe-bf52-5e0481aaaa3b", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a9c8bdeb-81eb-41fe-bf52-5e0481aaaa3b" }, { "id": "cace8618-a0d7-481a-8649-4b11df14f99c", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-cace8618-a0d7-481a-8649-4b11df14f99c" }, { "id": "31bbb3b5-33ed-4c21-acf8-7dbbc233338d", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-31bbb3b5-33ed-4c21-acf8-7dbbc233338d" }, { "id": "63e68f2a-6a05-428e-8eed-61ddc0114f53", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-63e68f2a-6a05-428e-8eed-61ddc0114f53" }, { "id": "a91608c7-544b-45be-8376-417c7d090873", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a91608c7-544b-45be-8376-417c7d090873" }, { "id": "bfa46ec0-efbf-4a21-a25f-86d274bc2606", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-bfa46ec0-efbf-4a21-a25f-86d274bc2606" }, { "id": "befeed6b-8472-4ed6-a83f-ada19dabb74a", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-befeed6b-8472-4ed6-a83f-ada19dabb74a" }, { "id": "2f0fb843-2b09-492c-9fc5-e9128eddc6c7", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-2f0fb843-2b09-492c-9fc5-e9128eddc6c7" }, { "id": "6931749f-d3e7-475d-8ba1-82eeafc0d8a5", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-6931749f-d3e7-475d-8ba1-82eeafc0d8a5" }, { "id": "d1e2ce6d-234f-4192-b605-b1f447adfce3", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-d1e2ce6d-234f-4192-b605-b1f447adfce3" }, { "id": "b9a45248-b68b-4034-861e-4b01045417fc", "name": "An upstream dependency timed out.", "originalRequest": { "method": "DELETE", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules/:schedule_id", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules", ":schedule_id" ], "variable": [ { "key": "schedule_id" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b9a45248-b68b-4034-861e-4b01045417fc" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-862f4534-a448-4769-a13b-6a01441534f5" } ], "id": "98a4f31b-d822-42e4-b0c9-d30ed8b9469c", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-98a4f31b-d822-42e4-b0c9-d30ed8b9469c" }, { "name": "Create a schedule", "id": "27c7a893-fc70-4fd0-8831-a2f7113bd4d7", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] }, "description": "Cron-based or one-shot (run_at) scheduled task. Schedule-count limits are tier- and deployment-configured; clients must handle the structured limit response rather than hardcoding plan values. BYOK: schedules store only the non-secret llm preference; at fire time the CURRENT stored key is used \u2014 if it was deleted, firings fail loudly with LLM_KEY_NOT_CONFIGURED instead of silently running on platform keys." }, "response": [ { "id": "3f4a3c76-772f-46f5-aa23-3b408096d1f9", "name": "Schedule created.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Idempotent-Replay", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Idempotency-Status", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"ex__\": \"\",\n \"consectetur_368\": \"\",\n \"ad4f8\": \"\"\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3f4a3c76-772f-46f5-aa23-3b408096d1f9" }, { "id": "6f8e1b6d-7066-4dc1-ba63-0151a7a26dc2", "name": "Invalid request body or parameters.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-6f8e1b6d-7066-4dc1-ba63-0151a7a26dc2" }, { "id": "f4b43c33-aaf7-4d23-8e35-68885b55fc6d", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-f4b43c33-aaf7-4d23-8e35-68885b55fc6d" }, { "id": "c83a0ae0-d258-4901-8602-80d6ae08720a", "name": "Insufficient credits to perform the operation. Top up via /credits or upgrade subscription.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Payment Required", "code": 402, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-c83a0ae0-d258-4901-8602-80d6ae08720a" }, { "id": "5e3c58d0-0d28-4442-a692-312adc2f2aa3", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-5e3c58d0-0d28-4442-a692-312adc2f2aa3" }, { "id": "45e736b1-c721-43e8-8d9d-c3b9eecf4fc1", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-45e736b1-c721-43e8-8d9d-c3b9eecf4fc1" }, { "id": "203d1d56-bc1f-4d9b-b557-61915e6acb3c", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-203d1d56-bc1f-4d9b-b557-61915e6acb3c" }, { "id": "541d650f-fa16-4df8-8a86-3a6b0ebf5bb0", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-541d650f-fa16-4df8-8a86-3a6b0ebf5bb0" }, { "id": "26c359ed-04ed-4394-89f3-08b0f6f7c75f", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-26c359ed-04ed-4394-89f3-08b0f6f7c75f" }, { "id": "a847236f-c566-4efa-9273-998192741539", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a847236f-c566-4efa-9273-998192741539" }, { "id": "a41b48dd-c931-4d4d-9830-045a9882140c", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-a41b48dd-c931-4d4d-9830-045a9882140c" }, { "id": "636e3e08-8832-4cf3-b411-29a3799c39cb", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-636e3e08-8832-4cf3-b411-29a3799c39cb" }, { "id": "3aab3cb2-e844-4129-ac42-d3217f7cf071", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3aab3cb2-e844-4129-ac42-d3217f7cf071" }, { "id": "14384ca8-7321-4532-9559-f4cee73d31a4", "name": "An upstream dependency timed out.", "originalRequest": { "method": "POST", "header": [ { "description": "Optional client-supplied key (\u2264128 chars, [A-Za-z0-9_-:]) for safe retries. 'Same request' = a SHA-256 of the canonical (sorted-key) JSON body (session_id is folded in for /sessions/{id}/predict). Replays the original response for 24 h when the body hash matches (X-Coasty-Idempotent-Replay: true and X-Credits-Charged: 0). Inference replays also set body usage.credits_charged=0 and usage.billed=false; machine-snapshot bodies retain the original gross charge for auditability. A retry while the original is still running waits up to ~25 s then returns the result, otherwise 409 IDEMPOTENCY_IN_FLIGHT (retry with the SAME key). Returns 422 IDEMPOTENCY_KEY_REUSED if the body differs. Collect a lost result via GET /v1/idempotency/{key}.", "key": "Idempotency-Key", "value": "eutY" }, { "description": "BYOK: which provider the X-LLM-Api-Key belongs to (anthropic | openai). Required whenever X-LLM-Api-Key is sent \u2014 a key without a provider is a 422 LLM_PROVIDER_UNSUPPORTED. Selecting a BYOK provider (here or via the body llm.provider) runs the ENTIRE harness on your own account with no silent fallback to Coasty's platform LLM keys.", "key": "X-LLM-Provider", "value": "openai" }, { "description": "BYOK: your own provider API key, used for this request only. Takes precedence over the key stored via PUT /v1/llm/keys/{provider}. Never logged, never echoed in any response, webhook, or idempotency replay.", "key": "X-LLM-Api-Key", "value": "" }, { "description": "BYOK: model override for this request (equivalent to body llm.model). Defaults: claude-sonnet-4-6 (anthropic), gpt-4o (openai). Any model string your account can access; must be vision-capable.", "key": "X-LLM-Model", "value": "" }, { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "body": { "mode": "raw", "raw": "{\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"frequency\": \"daily\",\n \"cron\": \"\",\n \"timezone\": \"UTC\",\n \"time\": \"\",\n \"day_of_week\": \"\",\n \"day_of_month\": \"\",\n \"run_at\": \"\",\n \"max_consecutive_failures\": 5,\n \"metadata\": {\n \"minim_35\": \"\"\n },\n \"llm\": {\n \"provider\": \"managed\",\n \"model\": \"\",\n \"grounding_model\": \"\",\n \"compaction_model\": \"\",\n \"code_agent_model\": \"\"\n }\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/v1/schedules", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-14384ca8-7321-4532-9559-f4cee73d31a4" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-27c7a893-fc70-4fd0-8831-a2f7113bd4d7" }, { "name": "List schedules", "id": "0d9fd767-c073-4fa1-a805-1a919d528af5", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "method": "GET", "header": [ { "key": "Accept", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "response": [ { "id": "27212b4b-3f43-49b4-bca3-0daa7c712e64", "name": "Schedules.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Key-Kind", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Test-Mode", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"data\": [\n {\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"in8\": \"\",\n \"minim_40\": \"\"\n }\n },\n {\n \"id\": \"\",\n \"name\": \"\",\n \"machine_id\": \"\",\n \"task_prompt\": \"\",\n \"enabled\": \"\",\n \"frequency\": \"\",\n \"cron\": \"\",\n \"timezone\": \"\",\n \"request_id\": \"\",\n \"next_run_at\": \"\",\n \"last_run_at\": \"\",\n \"run_count\": 0,\n \"consecutive_failures\": 0,\n \"paused_reason\": \"\",\n \"is_test\": false,\n \"created_at\": \"\",\n \"metadata\": {\n \"aliqua_2\": \"\",\n \"eu3c0\": \"\",\n \"aliquip__\": \"\"\n }\n }\n ],\n \"request_id\": \"\",\n \"has_more\": false\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-27212b4b-3f43-49b4-bca3-0daa7c712e64" }, { "id": "03de510e-cbe9-4e26-b013-f1cae3f8af24", "name": "Invalid request body or parameters.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-03de510e-cbe9-4e26-b013-f1cae3f8af24" }, { "id": "8bda431b-7bb3-4643-8910-bc6b1df4f605", "name": "Missing, invalid, or revoked API key. Pass `X-API-Key: sk-coasty-live-...` (or test).", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-8bda431b-7bb3-4643-8910-bc6b1df4f605" }, { "id": "7ff1ab24-a792-4251-bb5c-a26b67449d58", "name": "API key lacks the required scope or tier-feature is unavailable on the caller's plan.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7ff1ab24-a792-4251-bb5c-a26b67449d58" }, { "id": "de68cd9d-afc5-4ffa-b727-9f469b92b2c6", "name": "Resource not found in this key's namespace.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Not Found", "code": 404, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-de68cd9d-afc5-4ffa-b727-9f469b92b2c6" }, { "id": "77d5c70e-d06d-4c90-bbb1-b30bf9381d8f", "name": "The resource state conflicts with this operation.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Conflict", "code": 409, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-77d5c70e-d06d-4c90-bbb1-b30bf9381d8f" }, { "id": "4c34ca31-ee09-4772-8e3d-806d8ed9647b", "name": "The request body exceeds the endpoint limit.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Request Entity Too Large", "code": 413, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4c34ca31-ee09-4772-8e3d-806d8ed9647b" }, { "id": "7b512986-e8c0-4cb2-bdac-140d06d030bb", "name": "The JSON shape is valid but one or more values violate the endpoint contract.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Unprocessable Entity (WebDAV) (RFC 4918)", "code": 422, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-7b512986-e8c0-4cb2-bdac-140d06d030bb" }, { "id": "3341d586-a4e4-452b-8863-1e8389b18582", "name": "Rate or concurrency limit exceeded.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Too Many Requests", "code": 429, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-3341d586-a4e4-452b-8863-1e8389b18582" }, { "id": "90e5a64c-0d3b-438d-9c81-bc1865056027", "name": "Unexpected server error. Retry with exponential backoff.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-90e5a64c-0d3b-438d-9c81-bc1865056027" }, { "id": "b284f551-cb44-4f0c-bb97-319a3a70748c", "name": "An upstream dependency returned an invalid response.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Bad Gateway", "code": 502, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-b284f551-cb44-4f0c-bb97-319a3a70748c" }, { "id": "249c967c-0071-4319-8cbc-924ed436a95d", "name": "A required service is temporarily unavailable.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Service Unavailable", "code": 503, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-249c967c-0071-4319-8cbc-924ed436a95d" }, { "id": "4f3ce135-013f-4c3d-9c85-02eb9ccb6735", "name": "An upstream dependency timed out.", "originalRequest": { "method": "GET", "header": [ { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: apikey", "key": "X-API-Key", "value": "" } ], "url": { "raw": "{{baseUrl}}/v1/schedules?limit=50", "host": [ "{{baseUrl}}" ], "path": [ "v1", "schedules" ], "query": [ { "key": "limit", "value": "50" } ] } }, "status": "Gateway Timeout", "code": 504, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Coasty-Request-Id", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "Retry-After", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Charged", "value": "" }, { "disabled": false, "description": { "content": "", "type": "text/plain" }, "key": "X-Credits-Refunded", "value": "" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {\n \"code\": \"\",\n \"message\": \"\",\n \"type\": \"server_error\",\n \"retryable\": \"\",\n \"retry_with_same_idempotency_key\": \"\",\n \"request_id\": \"\",\n \"suggestion\": \"\",\n \"retry_after\": \"\",\n \"examples\": {\n \"in_728\": -91028610,\n \"velit35a\": -79374736.16462651,\n \"Duis9\": 20873090,\n \"doe\": -92516691\n }\n }\n}", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4f3ce135-013f-4c3d-9c85-02eb9ccb6735" } ], "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-0d9fd767-c073-4fa1-a805-1a919d528af5" } ], "id": "4ec04671-22ed-41a1-b8b1-e0f906f9816b", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-4ec04671-22ed-41a1-b8b1-e0f906f9816b" } ], "id": "07097473-f892-4b72-9dc6-b6e8b15d4a54", "createdAt": "2026-07-28T01:23:05.000Z", "updatedAt": "2026-07-28T01:23:05.000Z", "uid": "35240-07097473-f892-4b72-9dc6-b6e8b15d4a54" } ], "auth": { "type": "apikey", "apikey": [ { "key": "key", "value": "X-API-Key", "type": "string" }, { "key": "value", "value": "{{apiKey}}", "type": "string" }, { "key": "in", "value": "header", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://coasty.ai" } ] }