How to get access token?

To get access token, send POST request to
https://api.coinamania.exchange/v3/getToken

Request content type should be application/x-www-form-urlencoded

Include following parameters in the request:

grant_type - client_credentials

client_id - your client_id

client_secret - your client_secret

Send request using Basic authentication (Basic auth) method.

If everything is OK, you will receive access token.

Example

POST /v3/getToken HTTP/1.1

Host: api.coinamania.exchange

Content-Type: application/x-www-form-urlencoded

Content-Length: 27


grant_type=client_credentials&client_id=CLIENT_ID2&client_secret=CLIENT_SECRET