> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manus.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Manus Team APIs (v1) for enterprise administrators

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

# Manus Team API (v1)

The Manus Team API is a collection of admin-facing APIs that enterprise tenant owners use to manage and operate their Manus deployment programmatically. v1 spans two surface styles depending on the product:

* **Enterprise Data Export** — gRPC-style: `POST /<package>.<Service>/<Method>` with a JSON body, authenticated via `X-API-Key`.
* **Team User Management** — Connect RPC for credential management plus REST + OAuth 2.0 Client Credentials for the user CRUD endpoints.

<Tip>
  v2 unifies both surfaces under a single REST style with a shared response envelope and `X-API-Key` auth. See [v2 introduction](/enterprise/v2/introduction) when starting a new integration.
</Tip>

## Available APIs

<CardGroup cols={2}>
  <Card title="Enterprise Data Export" icon="download" href="/enterprise/v1/data-export-overview">
    Export user data for compliance, legal hold, and internal audits.
  </Card>

  <Card title="Team User Management" icon="users" href="/enterprise/v1/user-management-overview">
    Provision, update, and offboard team members from your IDP (SailPoint, Okta, custom).
  </Card>
</CardGroup>

## Get started

* **Enterprise Data Export:** [Authenticate](/enterprise/v1/authentication) with an `X-API-Key` from Compliance API settings.
* **Team User Management:** Follow the [User Management quickstart](/enterprise/v1/user-management-quickstart) to create credentials and mint an OAuth access token.
* See [Error codes](/enterprise/v1/errors) for the standard gRPC-style error format used by the Enterprise Data Export endpoints.

## Base URL

All API requests are made to:

```
https://api.manus.im
```

## Content type

JSON for all endpoints, except [oauth.token](/enterprise/v1/oauth.token), which uses `application/x-www-form-urlencoded`:

```
Content-Type: application/json
```
