Authentication
API Key + HMAC Signature scheme (example)
prehash = timestamp + HTTP_METHOD + request_path + body_json
signature = Base64( HMAC_SHA256(API_SECRET, prehash) )API-KEY: <your_api_key>
API-SIGN: <signature>
API-TIMESTAMP: <timestamp>
Content-Type: application/jsonLast updated