All capabilities

Blogs

Posts from 133 project and protocol blogs in one feed — engineering write-ups, governance updates, announcements.

19,000+posts

133 blogs behind the corpus. The record shape is identical to news (id, hash, title, url, image, author, published_at, source) but the corpus is project-authored, not media-authored — title points at engineering deep-dives, not press releases.

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
{ "id": 19375, "hash": "b9752e269fa16722b179b91e0e57ccb264929b2bb5c645fb5e4c9e04186e937e", "title": "How to Find and Buy Trending Tokens on Arc Chain", "url": "https://blog.kyberswap.com/how-to-find-and-buy-trending-tokens-on-arc-chain/", "image": "https://blog.kyberswap.com/wp-content/uploads/2022/07/kyberswap-logo-150x150.png", "author": null, "published_at": "2026-09-18T07:18:00Z", "source": { "name": "Kyberswap - Blog", "slug": "kyberswap_blog", "icon": "https://cdn.alphaday.com/media/icons/sources/kybe.jpg" }, "is_bookmarked": false, "is_liked": false, "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/blogs/?tags=arbitrum\&limit=3

MCP tools

get_blogsget_blogs_detailget_trending_blogs

What it's for

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

  • A 'what is the team at ArgoCo building' feed that does not crawl 133 RSS feeds: ?tags=arbitrum returns 273 posts, and ?sources=kyberswap_blog returns the 158 from one blog.
  • Engineering-deep-link discovery for a research agent: blog records carry the post URL and the project's blog host — a UI can deep-link without parsing.
  • Daily summary by blog: ?period=0 gives the day's posts — 12 in the last 24 hours — and grouping by source.slug turns them into a 'which projects shipped today' report.

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.

author is often null.

Verified on 18 Sep 2026: the example record carries author: null — project blogs frequently publish with no byline, even when the underlying CMS has one. Do not build a byline view that requires author to be present.

No sentiment or engagement fields.

Blog records carry likes (count) and is_liked (boolean), but no sentiment or sentiment_score. The endpoint is a feed, not a tone corpus — for sentiment-scoped blog analysis, score the short_description client-side.

sources needs the slug.

Verified on 18 Sep 2026: ?sources=kyberswap returns 0; ?sources=kyberswap_blog returns 158. Same slug ≠ name rule as the other content feeds — discoverable from any record's source.slug.

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.