Get list of trades for a market by mint address
curl --request GET \
--url https://dev-prediction-markets-api.dflow.net/api/v1/trades/by-mint/{mint_address} \
--header 'x-api-key: <api-key>'{
"trades": [
{
"count": 1,
"countFp": "<string>",
"createdTime": 1,
"noPrice": 1,
"noPriceDollars": "<string>",
"price": 1,
"takerSide": "<string>",
"ticker": "<string>",
"tradeId": "<string>",
"yesPrice": 1,
"yesPriceDollars": "<string>"
}
],
"cursor": "<string>"
}Trades
Get Trades by Mint
API reference for GET /api/v1/trades/by-mint/
GET
/
api
/
v1
/
trades
/
by-mint
/
{mint_address}
Get list of trades for a market by mint address
curl --request GET \
--url https://dev-prediction-markets-api.dflow.net/api/v1/trades/by-mint/{mint_address} \
--header 'x-api-key: <api-key>'{
"trades": [
{
"count": 1,
"countFp": "<string>",
"createdTime": 1,
"noPrice": 1,
"noPriceDollars": "<string>",
"price": 1,
"takerSide": "<string>",
"ticker": "<string>",
"tradeId": "<string>",
"yesPrice": 1,
"yesPriceDollars": "<string>"
}
],
"cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://pond.dflow.net/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API key for authentication. Contact hello@dflow.net to obtain an API key.
Path Parameters
Mint address (ledger or outcome mint)
Query Parameters
Maximum number of trades to return (1-1000, default 100)
Required range:
x >= 0Pagination cursor (trade ID) to start from
Filter trades after this Unix timestamp
Required range:
x >= 0Filter trades before this Unix timestamp
Required range:
x >= 0⌘I