Skip to content

News & entries

QuantConomy continuously ingests articles from thousands of feeds and runs each one through a machine-learning pipeline. The result is the entries dataset — articles enriched with sentiment, named entities, asset and topic links, and embeddings — plus three supporting datasets that organize them: clusters (related-story groups), topics (an economic taxonomy), and publishers (the news sources).

An entry is a single news article after ML processing. Each entry carries:

  • sentimentScore — a sentiment value from -1 (very negative) to 1 (very positive).
  • assetKeys — financial assets mentioned in the article, derived from named-entity recognition (e.g. us_stock_AAPL, crypto_BTC). Resolve these with the Assets API.
  • topicSlugs — topics the article was classified into (e.g. interest-rates, technology).
  • language — the detected language code (en, de, zh, …).
  • An embedding — a vector representation used for semantic search and clustering (never returned in responses, but searchable).

The detail endpoint additionally returns the full content, the related assets (with confidence scores), topics (with similarity scores), and the sources that published the article.

Method & pathDescriptionCredits
GET /entriesList entries (cursor pagination, filtering, sorting)1
GET /entries?query=<text>Embedding-based natural-language (semantic) search2
GET /entries/:idSingle entry with full content and related entities1

GET /entries (no query) uses cursor-based pagination: pass the nextCursor from the previous response back as the after query param to page through older items, or use prevCursor with before for newer items. The demo key (mtk_demo) is capped at 3 results, cannot paginate, and cannot use the advanced filters (topicSlug, assetKey, publisherSlug, language, countryCode, sentimentScoreMin/sentimentScoreMax, publishedAfter/publishedBefore, hasAssets); your own key can return up to 100 and use all of them. Sort with sortBy (createdAt:desc default, plus createdAt:asc, publishedAt:desc, publishedAt:asc).

?query= is semantic by default: a natural-language query is embedded with the same model used for entry embeddings and ranked by cosine similarity via Qdrant (a UUID or a source:/publisher:/topic:/asset: prefix instead does an exact/keyword lookup). It returns up to 50 results (3 on the demo key), accepts an optional maxAgeHours to restrict matches to recent entries, and ignores sortBy/cursors/filters in semantic mode. See the Semantic search guide for details.

Find recent positive-sentiment articles that mention Apple stock:

Terminal window
curl "https://api.quantconomy.com/api/v1/entries?assetKey=us_stock_AAPL&sentimentScoreMin=0.3&limit=5&sortBy=publishedAt:desc" \
-H "Authorization: Bearer mtk_your_key_here"

A cluster groups news entries that cover the same story or event. Clusters are generated from the semantic similarity of article embeddings, which makes them a fast way to surface trending stories and aggregate coverage from multiple sources.

Each cluster summary has a name, an entryCount, and timestamps. The detail endpoint returns every member entry along with a probability — how strongly each entry belongs to the cluster.

Method & pathDescriptionCredits
GET /clustersList clusters (page-based pagination)1
GET /clusters/:idSingle cluster with all member entries1

Clusters use page-based pagination (page + limit), unlike entries. Entry embeddings are excluded from the cluster detail response for performance — use the Entries API for full entry detail.

Terminal window
curl "https://api.quantconomy.com/api/v1/clusters?query=Federal%20Reserve&limit=5" \
-H "Authorization: Bearer mtk_your_key_here"

Topics are an economic taxonomy used to classify entries — economic concepts (Interest Rates, Inflation, GDP), events (Earnings Reports, IPOs, M&A), sectors (Technology, Healthcare, Energy), and regions (United States, Europe, Asia). Each topic has a stable slug and name, and topics form a hierarchy.

Method & pathDescriptionCredits
GET /topicsList topics (page-based, searchable, sortable)1
GET /topics/treeFull topic hierarchy as a flat array with parentId references1
GET /topics/:id/entriesEntries classified under a topic (cursor pagination)1
GET /topics/:idSingle topic1

GET /topics/tree returns every topic flattened, each with a parentId (null for root topics) so you can rebuild the navigation tree. The :id segment on the detail and entries endpoints accepts either a slug (e.g. interest-rates) or a UUID.

Terminal window
# Browse the taxonomy
curl "https://api.quantconomy.com/api/v1/topics/tree" \
-H "Authorization: Bearer mtk_your_key_here"
# Entries about interest rates
curl "https://api.quantconomy.com/api/v1/topics/interest-rates/entries?limit=10" \
-H "Authorization: Bearer mtk_your_key_here"

A publisher is a news source — a newspaper, news agency, blog, or website. Publishers carry a slug, name, countryCode, and languageCode, which you can use to filter the entries feed by source, country, or language.

Method & pathDescriptionCredits
GET /publishersList publishers (filter by countryCode, languageCode)1
GET /publishers/:idOrSlugSingle publisher (by UUID or slug)1
Terminal window
curl "https://api.quantconomy.com/api/v1/publishers?countryCode=US&languageCode=en&limit=10" \
-H "Authorization: Bearer mtk_your_key_here"

To pull every entry from a given publisher, combine the publisher’s slug with the entries feed: GET /entries?publisherSlug=reuters (authenticated only).

Entries are the core dataset; the others give you different ways into it:

  • By storyGET /clusters then GET /clusters/:id to read all coverage of one event.
  • By themeGET /topics/tree to browse the taxonomy, then GET /topics/:slug/entries.
  • By sourceGET /publishers then GET /entries?publisherSlug=....
  • By meaningGET /entries?query=<text> for natural-language (semantic) lookup.