GET
/
1
/
wallet
/
raw-transactions
curl --request GET \
  --url https://api.mobula.io/api/1/wallet/raw-transactions
{
  "raw": [
    {
      "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>",
        "totalSupply": 123,
        "circulatingSupply": 123,
        "price": 123,
        "liquidity": 123,
        "priceChange24hPercent": 123,
        "marketCapUSD": 123,
        "logo": "<string>",
        "nativeChainId": "<string>",
        "contract": "<string>"
      }
    }
  ],
  "unified": [
    {
      "chain_id": "<string>",
      "hash": "",
      "method": "<string>",
      "from": "",
      "to": "",
      "native_amount": "0",
      "name": "Unknown",
      "logo": "<string>",
      "amount": "0",
      "token": "",
      "symbol": "<string>",
      "timestamp": "",
      "block_number": 123,
      "txn_fees": "0",
      "status": true
    }
  ],
  "wallets": [
    "<string>"
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

Raw transactions endpoint allows you to retrieve raw and unified native transaction data (e.g., ETH, SUPRA, SOL transfers) for one or multiple specified wallet addresses across all EVM and non-EVM blockchains supported by Mobula, with pagination support.

Query Parameters

limit
string
offset
string
page
string
order
string
cache
string
stale
string
wallet
string
wallets
string
from
string
to
string
blockchains
string
pagination
string

Response

200 - application/json
Wallet raw transactions response
raw
object[]
required
unified
object[]
required
wallets
string[]
required
pagination
object | null
required