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