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.
| Field | Type | Description |
|---|---|---|
amount | int | Trade amount in cents. |
name | string | Display name of the trader. |
token | string | Token traded: "YES" or "NO". |
event | string | Name of the parent event. |
market | string | Name of the market. |
avatar | string | URL of the trader's avatar image, or null. |
Errors​
| Status | Code | Description |
|---|---|---|
| 500 | INTERNAL_ERROR | Unexpected server error. |