curl -X GET "https://heimdall.qa.zoniqx.com/non-custodial-evm/transactions" \
-H "Authorization: Bearer <accessToken>" \
-H "x-tenant-id: <your-tenant-id>"
const response = await fetch("https://heimdall.qa.zoniqx.com/non-custodial-evm/transactions", {
method: "GET",
headers: {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data = await response.json();type NonCustodialEvmController_listTransactionsResponse = Record<string, unknown>;
const response = await fetch("https://heimdall.qa.zoniqx.com/non-custodial-evm/transactions", {
method: "GET",
headers: {
Authorization: "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
},
});
const data: NonCustodialEvmController_listTransactionsResponse = await response.json();import requests
url = "https://heimdall.qa.zoniqx.com/non-custodial-evm/transactions"
headers = {
"Authorization": "Bearer <accessToken>",
"x-tenant-id": "<your-tenant-id>",
}
response = requests.get(url, headers=headers)
data = response.json()