Skip to main content
GET
/
api
/
user
/
manage
/
v1
/
users
/
{email}
Get User
curl --request GET \
  --url https://api.manus.im/api/user/manage/v1/users/{email} \
  --header 'Authorization: Bearer <token>'
{
  "email": "user@example.com",
  "userName": "Jane Doe",
  "firstName": "Jane",
  "lastName": "Doe",
  "status": "active",
  "role": "member"
}
Questions or issues? Contact us at api-support@manus.ai.
Auth: Bearer access token from oauth.token.URL encoding: The email path parameter must be URL-encoded — john.doe@example.com becomes john.doe%40example.com.404 vs other errors: Returns 404 USER_NOT_FOUND only when the email does not match any team member. Other failures return 500 INTERNAL_ERROR — retry with backoff.

Authorizations

Authorization
string
header
required

OAuth 2.0 Client Credentials access token issued by /api/user/manage/v1/oauth/token. Lifetime is 1 hour.

Path Parameters

email
string<email>
required

URL-encoded email address of the team member.

Example:

"user@example.com"

Response

User retrieved.

A team member.

email
string<email>
Example:

"user@example.com"

userName
string
Example:

"Jane Doe"

firstName
string
Example:

"Jane"

lastName
string
Example:

"Doe"

status
enum<string>
Available options:
active,
inactive
Example:

"active"

role
enum<string>

owner is read-only — it cannot be set or changed via API. free_tier_member is a non-paying member that does not consume a Stripe seat.

Available options:
owner,
super_admin,
admin,
member,
free_tier_member
Example:

"member"