Skip to content

Get me

GET
/users/me

Returned fields depend on granted scope. Under restricted scopes, sensitive fields such as email may be empty.

Authorizations

CoinpostOAuth

OAuth 2.0 authorization code flow with PKCE.

authorizationCode Flow
Authorization URL"/oauth/authorize"
Token URL"/oauth/token"
Scopes:
  • "user.public"Read public profile fields.
  • "user.full"Read the full user profile.

Responses

Current user

application/json
JSON
{
  
"ts": 0,
  
"data": {
  
  
"id": 0,
  
  
"uuid": "string",
  
  
"name": "string",
  
  
"bio": "string",
  
  
"tagline": "string",
  
  
"avatar_image_url": "string",
  
  
"email": "string",
  
  
"lang": "string",
  
  
"status": 0,
  
  
"created_at": "string",
  
  
"role": "string"
  
}
}

Playground

Authorization

Samples