Overview
Last updated
The Minded REST API provides programmatic access to analytics events and knowledge base document management.
https://api.minded.com/api/v1All API requests require an organization API token passed via the Authorization header:
Authorization: Bearer md_yourTokenHereScoped: Permissions are granted per token
Org-bound: Requests are authorized for the organization tied to the token
One-time visible: The plaintext token is shown only when created and cannot be recovered
In the Minded dashboard, navigate to Organization Settings → API Tokens to create, view, or revoke tokens.
analytics
knowledge-management
Rate limits vary by deployment (default: ~10 requests/minute). Response headers indicate current limits:
RateLimit-Limit
Maximum requests allowed
RateLimit-Remaining
Requests remaining in window
RateLimit-Reset
Seconds until limit resets
All responses are JSON. Successful responses typically include:
400
Bad request — missing required fields or invalid parameters
401
Unauthorized — invalid or missing token
403
Forbidden — token missing required scope
404
Not found — resource does not exist or does not belong to your organization
429
Too many requests — rate limit exceeded
500
Internal server error
Error responses include details:
Last updated
{
"success": true,
"data": { ... }
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Missing required field: agentId"
}
}