Skip to main content
GET
/
me
Get current Box user
curl --request GET \
  --url https://ascii.dev/api/box/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "type": "user.info",
  "user": {
    "login": "octocat",
    "email": "octocat@example.com"
  }
}

Authorizations

Authorization
string
header
required

Box API key in the form box_.... Create and rotate keys in the Box dashboard or through the v1 API key endpoints.

Response

Current user information.

ok
boolean
required
Example:

true

type
string
required

Stable success envelope discriminator added by v1.

Allowed value: "user.info"
user
object
required