Skip to main content
GET
/
me
Get authenticated user info
curl --request GET \
  --url https://api.vantage.sh/v2/me \
  --header 'Authorization: Bearer <token>'
{
  "default_workspace_token": "<string>",
  "workspaces": [
    {
      "token": "<string>",
      "name": "Acme Corp.",
      "created_at": "2023-08-04T00:00:00Z",
      "enable_currency_conversion": true,
      "currency": "USD",
      "exchange_rate_date": "<string>"
    }
  ],
  "bearer_token": {
    "description": "<string>",
    "created_at": "2023-08-04T00:00:00Z",
    "scope": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json

General information about the user.

Me model

default_workspace_token
string
required
workspaces
object[]
required
bearer_token
object
required