Documentation Index
Fetch the complete documentation index at: https://docs.origamiagents.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
All API requests require authentication using an API key.Getting your API key
- Log in to your Origami Dashboard
- Click Generate Key
- Copy your key immediately — it will only be shown once
- Store it securely
Using your API key
Include your API key in thex-origami-key header with every request:
Rate Limits
API requests are rate limited to ensure fair usage:| Endpoint | Global Limit | Per-Resource Limit |
|---|---|---|
Trigger Run (POST /workflows/{id}/runs/async) | 50 requests/min | 30 requests/min per workflow |
Check Status (GET /workflows/{id}/runs/{runId}/async/status) | 50 requests/min | 6 requests/min per run |
Get Response (GET /workflows/{id}/runs/{runId}/async/response) | 50 requests/min | — |
429 response with a Retry-After header indicating when you can retry.
Error Responses
Authentication errors return the following format:| Status Code | Meaning |
|---|---|
401 | Invalid or missing API key |
403 | API key doesn’t have access to this workflow |
404 | Workflow not found |