Three lines

Uber

Developers

Get User Information

GEThttps://api.uber.com/v3/me

Access to this API endpoint requires approval from Uber.

As part of Uber’s ongoing privacy improvements, we’re changing our Developer API program with new access policies for third party applications.

Please contact your Uber Business Development representative or Uber point of contact to get access to this API.

You are viewing the latest version of this endpoint. See previous versions of this endpoint: 1.0, 1.2.

User Profile

The User Profile endpoint returns information about the Uber user that has authorized with the application.

Resource

GET /v3/me

Authorization

OAuth 2.0 user access token that has at least the profile or eats.pos_provisioning scope.

Query Parameters

None

Example Request

Replace <TOKEN> in the example below with a user access token

curl -H 'Authorization: Bearer <TOKEN>' \
     -H 'Accept-Language: en_US' \
     -H 'Content-Type: application/json' \
     'https://api.uber.com/v3/me'
Response for profile, profile.mobile_number, profile.phone_number_verified_at, profile.email_verified_at scopes

A valid access token that also includes the profile.mobile_number scope (or if your application is allowlisted for mobile) will also return the user’s phone number.

Status-Code: 200 OK

{
  "sub": "8OlTlUG1TyeAQf1JiBZZdkKxuSSOUwu2IkO0Hf9d2HV52Pm25A0NvsbmbnZr85tLVi-s8CckpBK8Eq0Nke4X-no3AcSHfeVh6J5O6LiQt5LsBZDSi4qyVUdSLeYDnTtirw==",
  "given_name": "Uber",
  "family_name": "Developer",
  "email": "uberdevelopers@gmail.com",
  "email_verified": true,
  "email_verified_at": 1234567890,
  "picture": "https://d1w2poirtb3as9.cloudfront.net/f3be498cb0bbf570aa3d.jpeg",
  "promo_code": "uberd340ue",
  "phone_number":"+12345678910",
  "phone_number_verified": true,
  "phone_number_verified_at": 1234567890
}
Response for only profile scope

A valid access token that includes profile scope will return the user information.

Status-Code: 200 OK

{
  "sub": "8OlTlUG1TyeAQf1JiBZZdkKxuSSOUwu2IkO0Hf9d2HV52Pm25A0NvsbmbnZr85tLVi-s8CckpBK8Eq0Nke4X-no3AcSHfeVh6J5O6LiQt5LsBZDSi4qyVUdSLeYDnTtirw==",
  "given_name": "Uber",
  "family_name": "Developer",
  "email": "uberdevelopers@gmail.com",
  "picture": "https://d1w2poirtb3as9.cloudfront.net/f3be498cb0bbf570aa3d.jpeg",
  "promo_code": "uberd340ue",
  "phone_number_verified": true,
}
Response without profile scope

Only a valid access token with the eats.pos_provisioning scope will allow calls to this endpoint in order to obtain the sub (encrypted user ID).

Status-Code: 200 OK

{
  "sub": "8OlTlUG1TyeAQf1JiBZZdkKxuSSOUwu2IkO0Hf9d2HV52Pm25A0NvsbmbnZr85tLVi-s8CckpBK8Eq0Nke4X-no3AcSHfeVh6J5O6LiQt5LsBZDSi4qyVUdSLeYDnTtirw=="
}
Name Type Description Associated Scope(s)
sub string Encrypted unique identifier of the Uber user. profile OR eats.pos_provisioning
given_name string First name of the Uber user. profile
family_name string Last name of the Uber user. profile
email string Email address of the Uber user. profile
email_verified boolean Whether the user has confirmed their email address. profile
email_verified_at int64 Unix timestamp of when email address of the Uber user was verified. profile and profile.email_verified_at
picture string Image URL of the Uber user. profile
promo_code string The promotion code for the user. Can be used for rewards when referring other users to Uber profile
phone_number string Phone number of the Uber user. profile.mobile_number AND profile
phone_number_verified boolean Whether the user has confirmed their phone number. profile
phone_number_verified_at int64 Unix timestamp of when the phone number was verified. profile and profile.phone_number_verified_at

Uber

Developers
© 2025 Uber Technologies Inc.