curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/{chainName}/transactions/{address} \
--header 'Authorization: Bearer <token>'{
"transactions": [
{
"transactionHash": "An example name",
"blockNumber": 123,
"transactionTimestamp": "2023-11-07T05:31:56Z",
"blockHash": "An example name",
"blockExplorerUrls": [
"<string>"
],
"fromAddress": "An example name",
"toAddress": "An example name",
"labels": [
"sent"
],
"assetTransfers": [
{
"fromAddress": "An example name",
"toAddress": "An example name",
"amount": 123,
"tokenAddress": "An example name",
"metadata": {
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUri": "<string>"
}
}
],
"chainName": "ETH",
"networkId": 1
}
],
"nextOffset": "<string>"
}Fetches the list of transactions for a given wallet address within an environment.
curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/{chainName}/transactions/{address} \
--header 'Authorization: Bearer <token>'{
"transactions": [
{
"transactionHash": "An example name",
"blockNumber": 123,
"transactionTimestamp": "2023-11-07T05:31:56Z",
"blockHash": "An example name",
"blockExplorerUrls": [
"<string>"
],
"fromAddress": "An example name",
"toAddress": "An example name",
"labels": [
"sent"
],
"assetTransfers": [
{
"fromAddress": "An example name",
"toAddress": "An example name",
"amount": 123,
"tokenAddress": "An example name",
"metadata": {
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"imageUri": "<string>"
}
}
],
"chainName": "ETH",
"networkId": 1
}
],
"nextOffset": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the environment
36"95b11417-f18f-457f-8804-68e361f9164f"
ETH, EVM, FLOW, SOL, ALGO, STARK, COSMOS, BTC, ECLIPSE, SUI, SPARK, TRON, APTOS, TON Public key (address) of the wallet
255"An example name"
Was this page helpful?