GET
/
v1
/
wallets
/
{walletId}
/
addresses
/
{addressId}
/
transactions
curl --request GET \
  --url https://api.blockradar.co/v1/wallets/{walletId}/addresses/{addressId}/transactions \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "address": {
        "address": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4",
        "configurations": {
          "aml": {
            "message": "Address is not sanctioned",
            "provider": "ofac",
            "status": "success"
          },
          "disableAutoSweep": false,
          "enableGaslessWithdraw": false,
          "isActive": false,
          "showPrivateKey": false
        },
        "createdAt": "2024-10-16T05:23:11.095Z",
        "derivationPath": "m/44'/60'/0'/0/85",
        "id": "87a25d98-f3c4-4521-8d31-e97b97be613f",
        "isActive": false,
        "metadata": null,
        "name": null,
        "network": "testnet",
        "type": "INTERNAL",
        "updatedAt": "2024-10-16T05:47:51.206Z"
      },
      "amlScreening": {
        "message": "Address is not sanctioned",
        "provider": "ofac",
        "status": "success"
      },
      "amount": "1.0",
      "amountPaid": "1.0",
      "asset": {
        "address": "0x337610d27c682E347C9cD60BD4b3b107C9d34dDd",
        "createdAt": "2024-05-14T11:53:33.680Z",
        "decimals": 18,
        "id": "1890db58-f624-4972-a72b-e25387a81520",
        "isActive": true,
        "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800082/crypto-assets/tether-usdt-logo_wx7rwh.png",
        "name": "Tether USD",
        "network": "testnet",
        "standard": "BEP20",
        "symbol": "USDT",
        "updatedAt": "2024-06-14T22:36:43.868Z"
      },
      "assetSwept": true,
      "assetSweptAmount": "1.0",
      "assetSweptAt": "2024-10-16T05:25:18.728Z",
      "assetSweptGasFee": "0.00018817",
      "assetSweptHash": "0xa82af9af98018f186ee4fc3b1e2c291f0590edc481a3caffa968dea554a45dfa",
      "assetSweptRecipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
      "assetSweptSenderAddress": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4",
      "blockHash": "0x648228489993139fa100f6a11108779efe9b57cfcd377d926588476d78268b37",
      "blockNumber": 44778502,
      "blockchain": {
        "createdAt": "2024-05-14T11:53:33.106Z",
        "derivationPath": "m/44'/60'/0'/0",
        "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
        "isActive": true,
        "isEvmCompatible": true,
        "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
        "name": "BNB smart chain",
        "slug": "bnb-smart-chain",
        "symbol": "bnb",
        "tokenStandard": "BEP20",
        "updatedAt": "2024-06-14T22:36:43.716Z"
      },
      "chainId": 97,
      "confirmations": 7,
      "confirmed": true,
      "createdAt": "2024-10-16T05:24:11.171Z",
      "currency": "USD",
      "fee": null,
      "gasFee": "0.0002838165",
      "gasPrice": "5500000000",
      "gasUsed": "51603",
      "hash": "0xa8637dbe4614184f91198f907b5266f0d70453974d7167d44b41955277816754",
      "id": "4c2cf0db-3ba3-422d-b973-02eaf1074781",
      "metadata": null,
      "network": "testnet",
      "note": null,
      "reason": "Funds swept successfully",
      "recipientAddress": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4",
      "reference": "aGEomQa4pj",
      "senderAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
      "status": "SUCCESS",
      "type": "DEPOSIT",
      "updatedAt": "2024-10-16T05:25:18.741Z"
    }
  ],
  "message": "Transactions fetched successfully",
  "meta": {
    "currentPage": 1,
    "itemCount": 1,
    "itemsPerPage": 100,
    "totalItems": 1,
    "totalPages": 1
  },
  "statusCode": 200
}

Authorizations

x-api-key
string
header
required

Path Parameters

walletId
string
required
addressId
string
required

Query Parameters

id
string

The transaction ID

hash
string

The transaction Hash

status
string

Transactions statuses. Available values: PENDING, SUCCESS, FAILED

type
string

Transactions Type. Available values: DEPOSIT, WITHDRAW,SALVAGE

order
string

Order By. DESC, ASC

assets
string

A list of assets to filter by, seperated by commas

Response

200 - application/json
200
data
object[]
message
string
meta
object
statusCode
number