Get feed events for a market
Markets
Get Feed Events
Retrieves the latest feed events related to a specific market with pagination support
GET
Get feed events for a market
Authorizations
Scoped API token with HMAC-SHA256 signing. Requires three headers: lmts-api-key (token ID), lmts-timestamp (ISO-8601), lmts-signature (Base64-encoded HMAC). See Authentication docs for details.
Path Parameters
Query Parameters
Page number for pagination
Example:
1
Number of events per page
Example:
10
Response
List of feed events for the market
Array of feed events with pagination (FEFeedEvents type)
Example:
{
"data": [
{
"eventType": "NEW_TRADE",
"timestamp": "2025-09-01T11:30:31.000Z",
"user": { "name": "GG", "rankName": "Bronze" },
"data": {
"title": "Market Title",
"strategy": "Buy",
"outcome": "YES"
}
}
],
"totalPages": 5
}