Skip to main content
Questions or issues? Contact us at api-support@manus.ai. This walkthrough creates a credential, mints an OAuth access token, and lists team members. Prerequisites: your team is an Enterprise Team and your account has the Owner or Admin role.

Step 1 — Create an API credential

Credential management RPCs require a session token, not an OAuth token. Open Manus in your browser, then in DevTools → Network copy the Bearer ... value from the Authorization header on any UserInfo request.
The response includes clientId and clientSecret. The secret is shown only once — store it in a secrets manager immediately.

Step 2 — Mint an OAuth access token

The response carries an access_token valid for 3600 seconds:
Cache it and reuse for the full hour — minting a fresh token on every request will hit rate limits.

Step 3 — Call a users endpoint

From here you can:

Considering v2?

v2 of this API replaces session-token credential management with the standard X-API-Key flow (issued from Compliance API settings, no DevTools step) and adds the Profile Migration workflow for taking over a deactivated colleague’s data. Prefer v2 for new integrations.