Skip to main content
POST
/
auth
/
token
Get bearer token
curl --request POST \
  --url https://v2.api.us.housr.com/partners/auth/token \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "access_token": "<string>",
  "expires_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

The body is of type object.

Response

Token issued

access_token
string
expires_at
string<date-time>