Authorization Headers
Each request to the API (Cloud-API and Gateway-API) should include an Authorization header.

For convenience, clients can find the Authorization Header under Account Details in the Account Portal and use it to send transactions and check account quota.
Reconstruction
Parameter | Description |
Account ID | Account ID received when registering the account |
Secret hash | Secret hash received when registering the account |
Reconstruction
Authorization header construction code example in Python:
import base64
base64.b64encode(f"{account_id}:{secret_hash}".encode("utf-8")).decode("utf-8")
Last modified 7mo ago