Skip to main content
GET
/
api
/
users
/
me
Get your profile
curl --request GET \
  --url http://localhost:8000/api/users/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "usr_a1b2c3d4",
  "email": "developer@example.com",
  "name": "Jane Developer",
  "plan": "pro",
  "created_at": "2024-11-15T09:30:00Z"
}

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token. Example: Authorization: Bearer mk_live_...

Response

The user profile.

User account profile.

id
string

Unique user identifier.

Example:

"usr_a1b2c3d4"

email
string<email>

User's email address.

Example:

"developer@example.com"

name
string

User's display name.

Example:

"Jane Developer"

plan
enum<string>

Current subscription plan.

Available options:
free,
pro,
enterprise
created_at
string<date-time>

When the account was created.

Example:

"2024-11-15T09:30:00Z"