cURL
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" }
Issue a short-lived bearer token for API authentication. The token expires in approximately 1 hour and provides access to the Housr API based on your client credentials and associated scopes.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The body is of type object.
object
Token issued