The Origami API uses API keys for authentication. Each key is scoped to your organization and has access to all tables and workspaces within it.Documentation Index
Fetch the complete documentation index at: https://docs.origami.chat/llms.txt
Use this file to discover all available pages before exploring further.
Creating an API key
- Go to Settings → API Keys in the Origami app
- Click Create API Key
- Give it a descriptive name (e.g. “n8n integration”, “CRM sync”)
- Copy the key immediately — it’s shown only once
og_live_ prefix makes keys identifiable in leaked credential scans (GitHub
secret scanning, GitGuardian, etc.).
Using your API key
Pass the key in theAuthorization header as a Bearer token:
401 Unauthorized.
Key management
- Multiple keys: Create as many keys as you need — one per integration is recommended.
- Revocation: Revoke a key anytime from the API Keys settings page. Revoked keys
return
401immediately. - Rotation: To rotate a key, create a new one, update your integration, then revoke the old one.
- Identification: The UI shows the last 4 characters of each key for identification.
Security best practices
- Store keys in environment variables (
ORIGAMI_API_KEY) or a secrets manager - Use separate keys for development and production
- Revoke keys immediately if they may have been exposed
- Review the API Keys settings page periodically and remove unused keys
Rate limits
All endpoints are rate-limited per organization. Every API key in your organization shares the same quota.| Scope | Limit |
|---|---|
| Per organization, all endpoints | 100 requests / minute |
Per organization, POST /tables/{tableId}/rows | 10 requests / minute |
Rate limits use a sliding window. If you hit the limit, wait for the window to
reset rather than retrying immediately.
429 Too Many Requests. Every response includes
headers so you can track your usage proactively:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed in the window |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |