Documentation Index
Fetch the complete documentation index at: https://docs.mutagent.io/llms.txt
Use this file to discover all available pages before exploring further.
API Reference
The MutagenT REST API provides programmatic access to all platform features. For the easiest integration, use the official SDKs (TypeScript or Python) which wrap this API with type safety.Base URL
Authentication
All API requests require authentication. MutagenT supports two authentication methods:API Key scoping determines which headers are required. Workspace-scoped keys require no additional headers. Organization-scoped keys require
x-workspace-id. User-scoped keys require both x-workspace-id and x-organization-id. See API Keys for details.Rate Limits
| Plan | Requests/minute | Requests/day |
|---|---|---|
| Free | 60 | 1,000 |
| Pro | 300 | 10,000 |
| Enterprise | Custom | Custom |
Response Format
All responses are JSON:Error Responses
Common Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 429 | Rate Limited |
| 500 | Server Error |
SDKs
We recommend using our official SDKs instead of direct API calls:TypeScript SDK
Type-safe TypeScript/JavaScript SDK
Python SDK
Type-safe Python SDK — sync and async