🔐Authentication

Returns your authentication token (OAuth 2.0) which you'll need to call the other APIs

Get your Access Auth Token

Make sure you have a API Keys by creating an account here - you will need to complete KYB before your account is approved. Once you get your keys, you can download the OpenAPI Specification here and make some auth calls:

POST https://api.akibaone.com/authorization/revoke

GET https://api.akibaone.com/authorization/whoami

AUTHORIZATION Bearer Token

Headers

Name
Type
Description

Authorization*

String

Bearer Token

Request Body

Name
Type
Description

client_id*

String

Your CLIENT_ID

client_secret*

String

Your CLIENT_SECRET

client_credential*

String

Your CLIENT_CREDENTIAL

{
  "access_token":"MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3",
  "token_type":"bearer",
  "expires_in":3600,
  "refresh_token":"IwOGYzYTlmM2YxOTQ5MGE3YmNmMDFkNTVk",
}

Last updated