Industry Packs API
Six built-in industry packs — load to seed your tenant with industry-specific keywords, templates, and glossaries.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/api/v1/industry-packs` | Catalog |
| GET | `/api/v1/industry-packs/loaded` | Currently loaded |
| GET | `/api/v1/industry-packs/:id/preview` | Preview a section |
| POST | `/api/v1/industry-packs/:id/load` | Load |
| POST | `/api/v1/industry-packs/:id/unload` | Unload |
| POST | `/api/v1/industry-packs/:id/set-primary` | Set primary |
Every response uses the standard envelope:
{
"success": true,
"data": { /* resource or array */ },
"meta": { "total": 100, "cursor": "...", "hasMore": true },
"error": { "code": "ERROR_CODE", "message": "Human readable" }
}error is omitted on success; meta is omitted when not paginating.
Rate Limits
Subject to the standard 200 req/min/tenant authenticated limit. See [Rate Limits](/docs/api-reference/rate-limits) for full details and the per-endpoint overrides.