Skip to main content

GET /api/v1/market/trades/latest

Retrieve the most recent trades across all markets. Used for the public activity feed.

Authentication​

None. This endpoint is publicly accessible.

Request​

No query parameters required.

Example​

curl https://intotes.com/api/v1/market/trades/latest

Response​

200 OK​

[
{
"amount": 500,
"name": "alice",
"token": "YES",
"event": "Will ETH exceed $4000 by June?",
"market": "ETH > $4000",
"avatar": "https://cdn.intotes.com/avatars/alice.jpg"
},
{
"amount": 1200,
"name": "bob",
"token": "NO",
"event": "Champions League Final Winner",
"market": "Real Madrid wins",
"avatar": "https://cdn.intotes.com/avatars/bob.jpg"
},
{
"amount": 300,
"name": "charlie",
"token": "YES",
"event": "US Election 2026 Senate",
"market": "Democrats win majority",
"avatar": null
}
]

Response Fields​

Returns an array of SimpleTrade objects.

FieldTypeDescription
amountintTrade amount in cents.
namestringDisplay name of the trader.
tokenstringToken traded: "YES" or "NO".
eventstringName of the parent event.
marketstringName of the market.
avatarstringURL of the trader's avatar image, or null.

Errors​

StatusCodeDescription
500INTERNAL_ERRORUnexpected server error.