v1

latestOpenAPI 3.0.32026-07-248079274.0 KB
Authentication

Create an access_token

Access to the API is by Bearer Tokens, this request generates an access_token that can be used in the authorization header of each request. You generate the token by passing your client credentials through the login endpoint.

post/login

Request body

app_idstring required

Unique ID assigned by Acquired.com to your application.

app_keystring required

Secret key used as part of the authentication process.

Example request

{
  "app_id": "72693514",
  "app_key": "de0eef006b4c30440aeca8ca5ac58789"
}

Response

OK

token_typestring

Details the token type returned.

expires_ininteger

Time in seconds until the access_token expires.

access_tokenstring

Unique token that can be used to authenticate and log into the API.

Example response

{
  "token_type": "Bearer",
  "expires_in": 3600,
  "access_token": "eyJ0eXAiOiJKV1QiLC....."
}
All 80 operations