Skip to main content
POST
/
refresh
Refresh an ID token (deprecated)
curl --request POST \
  --url https://laso.finance/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "<string>"
}
'
{
  "auth": {
    "id_token": "<string>",
    "refresh_token": "<string>",
    "expires_in": "<string>"
  },
  "user_id": "<string>"
}

Body

application/json
refresh_token
string
required

The refresh token received from /auth or a previous refresh call

Response

Refreshed auth credentials and user ID

auth
object
user_id
string

The user's ID (lowercase wallet address)