Skip to main content
GET
/
api
/
v1
/
trades
/
by-mint
/
{mint_address}
Get list of trades for a market by mint address
curl --request GET \
  --url https://prediction-markets-api.dflow.net/api/v1/trades/by-mint/{mint_address}
{
  "cursor": "<string>",
  "trades": [
    {
      "count": 1,
      "createdTime": 1,
      "noPrice": 1,
      "noPriceDollars": "<string>",
      "price": 1,
      "takerSide": "<string>",
      "ticker": "<string>",
      "tradeId": "<string>",
      "yesPrice": 1,
      "yesPriceDollars": "<string>"
    }
  ]
}

Path Parameters

mint_address
string
required

Query Parameters

limit
integer
Required range: x >= 0
cursor
string
minTs
integer
Required range: x >= 0
maxTs
integer
Required range: x >= 0

Response

trades
object[]
required
cursor
string | null