New: unified Python, Go & Rust SDKs — available now in beta.

List scored feed items

GET
/v1/feeds

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

since?string

Lower bound on published_at

Formatdate-time
until?string

Upper bound on published_at

Formatdate-time
aggregator?string

Filter by source (e.g. globenewswire)

actionability?string

Value in

  • "true"
  • "false"
sentiment_min?integer
Range0 <= value <= 10
sentiment_max?integer
Range0 <= value <= 10
exchange?string

e.g. NASDAQ, NYSE

symbol?string

Short symbol, e.g. TSLA

limit?integer

Capped by tier

Range1 <= value
cursor?string

Opaque pagination cursor

Response Body

application/json

curl -X GET "https://example.com/v1/feeds"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "unique_id": "string",      "title": "string",      "link": "string",      "source": "string",      "published_at": "2019-08-24T14:15:22Z",      "scraped_at": "2019-08-24T14:15:22Z",      "scoring": {        "actionability": true,        "actionability_comment": "string",        "sentiment_score": 0,        "sentiment_comment": "string"      },      "symbols": [        {          "symbol": "string",          "exchange": "string",          "short_symbol": "string",          "logoid": "string"        }      ]    }  ],  "next_cursor": "string"}
Empty
Empty