GET
/
wallet
/
transactions
curl --request GET \
  --url https://api.mobula.io/api/1/wallet/transactions
{
  "data": {
    "transactions": [
      {
        "timestamp": 123,
        "asset": {
          "name": "<string>",
          "symbol": "<string>",
          "id": 123,
          "contract": "<string>",
          "logo": "<string>"
        },
        "type": "<string>",
        "method_id": "<string>",
        "hash": "<string>",
        "blockchain": "<string>",
        "amount": 123,
        "amount_usd": 123,
        "to": "<string>",
        "from": "<string>",
        "tx_cost": 123
      }
    ],
    "total": 123,
    "offset": 123,
    "limit": 123,
    "page": 123,
    "lastUpdated": {}
  }
}

Query Parameters

wallet
string

The user wallet queried

wallets
string

The user wallets queried (comma separated)

from
integer

Start of the timeframe for transactions (timestamp)

to
integer

End of the timeframe for transactions (timestamp)

asset
string

Specific asset to filter transactions

blockchains
string

Blockchains to fetch NFTs from (by default, all) - comma separated, chain ID or chain name

limit
integer
default: 50

Number of transactions to return per page

offset
integer
default: 10

Number of transactions to skip

order
enum<string>
default: asc
Available options:
asc,
desc
unlistedAssets
boolean
default: false

Response

200 - application/json
data
object