Market research · built for people and machines

Analysis you can read.
Data your bot can parse.

Every article is published three ways from one source: a rendered page, structured data for search and answer engines, and JSON at a versioned endpoint. No second-class version for machines.

For machines

The API is not an afterthought

Reads need no key. Every published article is available as JSON at the same moment it appears on the site, generated by the same function that renders the page — so the two cannot disagree.

  • Versioned at /api/v1/; changes within a version are additive only
  • Server-rendered HTML, so crawlers that don't run JavaScript still see everything
  • Authenticated ingest for approved publishers
live endpoint
$ curl -s https://coinbot-vert.vercel.app/api/v1/posts?limit=1

{
  "data": [
    {
      "slug": "how-coinbot-publishes",
      "title": "How CoinBot publishes…",
      "category": "ANNOUNCEMENT",
      "published_at": "2026-09-08T…",
      "source": "HUMAN"
    }
  ],
  "pagination": { "total": 4, "has_more": false }
}

Research and analysis only. Nothing published here is financial advice or a recommendation to trade. Markets carry risk; decisions and their consequences are your own.