Banx Media Platform logo

Free news API

Live headlines on crypto, politics, business, technology and world news, as JSON. Free tier is 1,000 requests a day and the key is issued instantly — there is no approval queue.

If you just want headlines on a page rather than data to render yourself, the embeddable widgets need no key at all.

1. Get a key

curl -X POST https://YOUR-API-HOST/api/v1/production/public/api-keys \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","projectName":"My Site"}'

2. Fetch articles

curl "https://YOUR-API-HOST/api/v1/production/public/articles?category=CRYPTOCURRENCY&limit=10" \
  -H "x-api-key: bnx_api_YOUR_KEY_HERE"

Response

{
  "success": true,
  "data": [
    {
      "id": "…",
      "title": "…",
      "excerpt": "…",
      "image": "https://…",
      "category": "CRYPTOCURRENCY",
      "publishedAt": "2026-09-07T08:14:00.000Z",
      "url": "https://www.banxnetwork.com/news-detail/…"
    }
  ],
  "pagination": { "page": 1, "limit": 10, "count": 10 },
  "attribution": {
    "source": "Banx Network",
    "url": "https://www.banxnetwork.com",
    "terms": "https://www.banxnetwork.com/developers"
  }
}

Endpoints

MethodPathAuthDescription
GET/public/articlesx-api-key headerLatest approved articles as JSON. The main endpoint.
GET/public/widget/articlesNoneThe same feed, keyless, used by the embeddable widgets. Rate limited per domain.
POST/public/api-keysNoneIssue yourself a free API key. Instant, no approval.

Query parameters

ParameterTypeDefaultDescription
pageinteger1Page number.
limitinteger20Results per page. Maximum 50.
categorystringallCRYPTOCURRENCY, POLITICS, BUSINESS, TECHNOLOGY, WORLD, STOCKS, SCIENCE, AI, HEALTH or REAL_ESTATE.

Rate limits

Terms