GET
/
1
/
wallet
/
transactions
Get wallet transactions
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/wallet/transactions
{
  "data": {
    "transactions": [
      {
        "id": "<string>",
        "timestamp": 123,
        "from": "<string>",
        "to": "<string>",
        "contract": "<string>",
        "hash": "<string>",
        "amount_usd": 123,
        "amount": 123,
        "block_number": 123,
        "type": "<string>",
        "blockchain": "<string>",
        "tx_cost": 123,
        "transaction": {
          "hash": "<string>",
          "chainId": "<string>",
          "fees": "<string>",
          "feesUSD": 123,
          "date": "<string>"
        },
        "asset": {
          "id": 123,
          "name": "<string>",
          "symbol": "<string>",
          "decimals": 123,
          "totalSupply": 123,
          "circulatingSupply": 123,
          "price": 123,
          "liquidity": 123,
          "priceChange24hPercent": 123,
          "marketCapUSD": 123,
          "logo": "<string>",
          "nativeChainId": "<string>",
          "contract": "<string>"
        }
      }
    ],
    "wallets": [
      "<string>"
    ]
  },
  "details": "<any>",
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

Query Parameters

  • You must provide either the wallet parameter or the wallets parameter.

Query Details

ParameterTypeDescription
walletCond.Single wallet address to query trades for.
walletsstringComma-separated list of wallet addresses to query.
blockchainsstringComma-separated list of blockchain chain IDs/names to filter by.
limitstringNumber of items to return .
offsetstringOffset for pagination (alternative to page).
orderstringSort order: "asc" or "desc" by timestamp.
fromstringStart date filter (ISO string or timestamp).
tostringEnd date filter (ISO string or timestamp).
unlistedAssetsstringInclude unlisted or non-indexed assets (boolean).
onlyAssetsstringFilter by specific asset IDs (comma-separated).
paginationstringEnable pagination (boolean).
filterSpamstringFilter out spam tokens (boolean).
tradesstringFilter transactions to include only trades (boolean).
transactionsstringFilter transactions to include only non-trades (boolean).

Usage Examples

  • Query Wallet Transactions with Unlisted Assets and Pagination
curl -X GET "https://explorer-api.mobula.io/api/1/wallet/transactions?wallet=0xaF88370abD82EC6943cdB3D4ec7b764B92c35B43&unlistedAssets=true&pagination=true"
  • Query Wallet Transactions Filtered by Date Range
curl -X GET "https://explorer-api.mobula.io/api/1/wallet/transactions?wallet=4tqMHgB8jjbTgefVfqtVFYzyfQz2LQ8T3E922ePmt6kZ&from=1704067200000&to=1735689600000"

Query Parameters

limit
string
offset
string
page
string
order
string
wallet
string
wallets
string
from
string
to
string
trades
string
transactions
string
blockchains
string
unlistedAssets
string
onlyAssets
string
pagination
string
filterSpam
string

Response

200 - application/json

Wallet transactions response

The response is of type object.