All capabilities

News

Real-time news from 49 crypto outlets, deduped and tagged, with sentiment scored per record.

440,000+articles

49 outlets behind the corpus. Sorted newest-first; every record carries a published_at, a sentiment score, and the source's name and slug.

What's in a record

Every field the corpus returns for one record. Real shape — walked corpus-wide, not sampled.

  • id
  • hash
  • title
  • url
  • image
  • author
  • published_at
  • source
  • sentiment
  • sentiment_score
  • likes
{ "id": 484835, "hash": "de8ff05bf07734c7276519af5b05a92bef8155073656509293525cc00c0e7e0b", "title": "House Committee Advances US Bitcoin Reserve Bill on Party-Line Split", "url": "https://decrypt.co/378457/house-committee-advances-us-bitcoin-reserve-bill-on-party-line-split", "image": "https://img.decrypt.co/insecure/rs:fill:1024:512:1:0/plain/https://cdn.decrypt.co/wp-content/uploads/2025/05/US-Capitol-decrypt-style-02-gID_7.png@png", "author": null, "published_at": "2026-09-17T10:24:00Z", "source": { "name": "Decrypt", "slug": "decrypt_news", "icon": "https://cdn.alphaday.com/media/icons/sources/decrypt_news.jpg" }, "is_bookmarked": false, "is_liked": false, "sentiment": 0, "sentiment_score": "0.00", "likes": 0 }

Get it

A curl that runs against the live API right now, plus the MCP tool names for the same data.

curl https://api.alphaday.com/items/news/?tags=arbitrum\&limit=3

MCP tools

get_newsget_news_detailget_trending_newsget_news_last_24_hours

What it's for

Three concrete questions this capability answers that a general crypto API does not.

  • A media-monitoring agent that wants every outlet's take on a single story — tags=arbitrum returns 1,264 articles, a 'who has covered this' count is a ?sources=* walk from there.
  • Sentiment-tagged news for a research brief: sentiment and sentiment_score are scored per article, so a one-week tone chart for a project is a single sort.
  • A 'last 24 hours' feed without signup or polling: get_news_last_24_hours is a separate tool, and ?period=0 gives the same window on this endpoint — 69 articles in the last 24 hours, against 3,992 for the week.

Known limits

Required, not optional. Coverage gaps, staleness and parameter traps that were observed by running the curl above against the live server on 2026-09-18.

sources requires the source's slug, not its name.

Verified corpus-wide on 18 Sep 2026: ?sources=decrypt returns 0 on news; ?sources=decrypt_news returns 22,778. The slug is the join key (e.g. decrypt_news, kyberswap_blog), not the display name — discoverable from any record's source.slug field. A junk value returns 0, the same shape a working-looking invalid filter has.

tags is a fuzzy keyword match, not a slug match.

?tags=banana returns 77 news items, not 0 — the parameter searches across the keyword bag on every record rather than matching the taxonomy slug exactly. Use the tag taxonomy (get_tags) to discover slugs first; once you have them, the count is exact.

sentiment is a single number, not a label.

sentiment is a numeric score and sentiment_score is its decimal string ("0.00"). The endpoint does not bucket articles as positive/negative/neutral; the bucket has to be derived client-side from the score's sign.

Figures and payloads verified against the live API on 2026-09-18. The API needs no key and no signup — see the full endpoint reference and the MCP server.