[BETA] Wallet Explorer API
Retrieve the history balance of a wallet
GET
/
wallet
/
history
Query
curl --request GET \
--url https://api.app-mobula.com/api/1/wallet/history
{
"balance_history": [
[]
],
"balance_usd": 123,
"wallet": "<string>"
}
Query Parameters
wallet
string
requiredThe user wallet queried
from
integer
JS Timestamp (miliseconds) of the beginning of the timeframe (if not provided, genesis)
to
integer
JS Timestamp (miliseconds) of the end of the timeframe (if not provided, end)
blockchains
string
Blockchains to fetch history from (by default, all) - comma separated, chain ID or chain name
Response
200 - application/json
balance_history
array
balance_usd
number
wallet
string
Was this page helpful?
curl --request GET \
--url https://api.app-mobula.com/api/1/wallet/history
{
"balance_history": [
[]
],
"balance_usd": 123,
"wallet": "<string>"
}