Skip to main content
POST
/
news-feed
/
market-news
Get news articles for markets with market impact summaries
curl --request POST \
  --url https://api.agg.market/news-feed/market-news \
  --header 'Content-Type: application/json' \
  --header 'x-app-id: <api-key>' \
  --data '
{
  "venueMarketIds": [
    "<string>"
  ],
  "venueEventIds": [
    "<string>"
  ],
  "customQuery": "<string>",
  "tbs": "<string>",
  "limit": 3
}
'
{
  "results": [
    {
      "venueMarketId": "<string>",
      "venueEventId": "<string>",
      "question": "<string>",
      "eventTitle": "<string>",
      "category": "<string>",
      "searchQuery": "<string>",
      "timeRange": "<string>",
      "timeRangeLabel": "<string>",
      "articles": [
        {
          "title": "<string>",
          "url": "<string>",
          "snippet": "<string>",
          "source": "<string>",
          "imageUrl": "<string>",
          "publishedAt": "<string>",
          "summary": "<string>",
          "relevanceScore": 123
        }
      ]
    }
  ]
}

Authorizations

x-app-id
string
header
required

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

Body

application/json
venueMarketIds
string[]
Maximum array length: 10
Required string length: 1 - 256
venueEventIds
string[]
Maximum array length: 10
Required string length: 1 - 256
customQuery
string
Required string length: 1 - 160
tbs
string
Required string length: 1 - 128
limit
integer
Required range: 1 <= x <= 5

Response

200

results
object[]
required