[BETA] Wallet Explorer API
Fetch transactions of a wallet
GET
/
wallet
/
transactions
Query
curl --request GET \
--url https://api.mobula.io/api/1/wallet/transactions
{
"transactions": [
{
"amount": 123,
"asset": {},
"from": "<string>",
"timestamp": 123,
"to": "<string>"
}
]
}
Query Parameters
from
integer
ISO Date string OR Timestamp from which you want to start receiving transactions
to
integer
ISO Date string OR Timestamp until which you want to receive transactions
asset
string
The asset you want to target, use the asset's name (empty if you want general transactions)
wallet
string
requiredThe user wallet queried
blockchains
string
Blockchains to fetch NFTs from (by default, all) - comma separated, chain ID or chain name
limit
integer
default: 100Number of transactions to return (100 by default)
offset
integer
default: 0Number of pages to skip (0 by default) - limit * offset = number of transactions to skip
order
enum<string>
default: ascOrder in which transactions should be sorted. Use 'asc' for ascending and 'desc' for descending.
Available options:
asc
, desc
Response
200 - application/json
transactions
object[]
Was this page helpful?
curl --request GET \
--url https://api.mobula.io/api/1/wallet/transactions
{
"transactions": [
{
"amount": 123,
"asset": {},
"from": "<string>",
"timestamp": 123,
"to": "<string>"
}
]
}