Authentication


Our endpoints make use of Auth Tokens to authenticate incoming requests,

Generate Token

  1. Head over to your dashboard. Under Account , you should be able to navigate to API Keys tab.
  2. Click on Create Token. Copy the generated token somewhere safe as we WON'T display it again

Account

  1. The generated keys MUST be appended on all your requests' Headers, under the Bearer Token Authorization.

Sample Header

{
    "Content-type: application/json",
    "Accept: application/json",
    "Authorization: Bearer 123456789"
}

{info} Please NOTE that Authorization value is a concatenation of string Bearer and your generated token with a white space between the two

{danger} The Generated Token Gives a person full access to your account. Don't share it under any circumstance️