Market API
Get trade history for an asset
GET
/
market
/
trades
Query
curl --request GET \
--url https://api.mobula.io/api/1/market/trades
[
{
"blockchain": "<string>",
"date": "2023-11-07T05:31:56Z",
"hash": "<string>",
"token_amount": 123,
"token_price": 123,
"type": "<string>",
"value_usd": 123
}
]
Query Parameters
asset
string
requiredAsset name or contract address to retrieve trade history for.
maxResults
integer
default: 20Maximum number of results to return.
Response
200 - application/json
blockchain
string
date
string
hash
string
token_amount
number
token_price
number
type
string
value_usd
number
Was this page helpful?
curl --request GET \
--url https://api.mobula.io/api/1/market/trades
[
{
"blockchain": "<string>",
"date": "2023-11-07T05:31:56Z",
"hash": "<string>",
"token_amount": 123,
"token_price": 123,
"type": "<string>",
"value_usd": 123
}
]