Skip to main content
GET
/
news-feed
/
{category}
/
markets
Market-centric news feed - markets grouped with their news timeline
curl --request GET \
  --url https://api.agg.market/news-feed/{category}/markets \
  --header 'x-app-id: <api-key>'
{
  "data": [
    {
      "venueMarketId": "<string>",
      "question": "<string>",
      "venue": "<string>",
      "yesPrice": 123,
      "eventTitle": "<string>",
      "eventId": "<string>",
      "category": "<string>",
      "articleCount": 123,
      "articles": [
        {
          "title": "<string>",
          "url": "<string>",
          "source": "<string>",
          "imageUrl": "<string>",
          "publishedAt": "<string>",
          "summary": "<string>",
          "relevanceScore": 123,
          "seq": 123,
          "addedAt": "<string>"
        }
      ]
    }
  ],
  "nextCursor": "<string>",
  "hasMore": true
}

Authorizations

x-app-id
string
header
required

Your application ID. Required for all app-tier and user-tier routes.

Path Parameters

category
string
required

Query Parameters

cursor
string
Required string length: 1 - 32
Pattern: ^[0-9]+$
since
string
Required string length: 1 - 64
before
string
Required string length: 1 - 64
limit
integer
Required range: 1 <= x <= 50

Response

200

data
object[]
required
nextCursor
string | null
required
hasMore
boolean
required