Instant exchange API

Authorization process

For all requests, an authorization key is required. It grants access to all functions.
These parameters should be included in the headers to configure API authorization:
Request parameters:
Headers
x-api-public-key{publicKey}
x-api-signature{signature}
x-api-payload{payload}
signature = hex(HMAC_SHA512(payload, key=api_secret))
In the payload field of the request header, you must pass the exact API name of the request you are making. For example, for a request to api/private/get-all-coins, the payload value should be get-all-coins and so on.
Payload meaning:
API EndpointPayload
/api/private/get-all-coinsget-all-coins
/api/private/get-coin-networkget-coin-network
/api/private/exchange-coinexchange-coin
/api/private/get-transactionget-transaction
/api/private/create-transactioncreate-transaction