Skip to main content
Questions or issues? Contact us at api-support@manus.ai.

Manus Team API

The Manus Team API is a collection of admin-facing APIs that enterprise tenant owners use to manage and operate their Manus deployment programmatically. The current surface focuses on compliance workflows; additional product areas (user management, project administration, …) will be added over time.

Available APIs

Enterprise Data Export

Export user data for compliance, legal hold, and internal audits.

Enterprise SIEM Integrations

Stream audit events to your SIEM, or export them on demand, for compliance and security monitoring.

Team User Management

Provision, update, and offboard team members from your IDP (SailPoint, Okta, custom).

Shared Team Asset Governance

Enumerate the team’s shareable surface and override individual share scopes from a DSPM workflow.

Get started

Before calling any endpoint:
  • Authenticate — issue an enterprise API key from Compliance settings.
  • Choose a protocol — every operation is callable via REST or Connect RPC.

Base URL

All API requests are made to:
https://api.manus.im

Response format

Every response is wrapped in a consistent envelope by V2ResponseMiddleware: Success:
{
  "ok": true,
  "request_id": "req_abc123",
  ...
}
Error:
{
  "ok": false,
  "request_id": "req_abc123",
  "error": {
    "code": "invalid_argument",
    "message": "..."
  }
}
Error codeDescription
invalid_argumentMissing or invalid request parameters
unauthenticatedThe API key is missing, invalid, or not valid for this endpoint’s key type
not_foundThe requested resource does not exist
permission_deniedAuthenticated, but not permitted to perform this operation
failed_preconditionThe resource is not in a valid state for the requested operation
internalInternal server error — retry with backoff and contact support if it persists