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
| Method | Path | Auth | Description |
|---|---|---|---|
| GET | /public/articles | x-api-key header | Latest approved articles as JSON. The main endpoint. |
| GET | /public/widget/articles | None | The same feed, keyless, used by the embeddable widgets. Rate limited per domain. |
| POST | /public/api-keys | None | Issue yourself a free API key. Instant, no approval. |
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| page | integer | 1 | Page number. |
| limit | integer | 20 | Results per page. Maximum 50. |
| category | string | all | CRYPTOCURRENCY, POLITICS, BUSINESS, TECHNOLOGY, WORLD, STOCKS, SCIENCE, AI, HEALTH or REAL_ESTATE. |
Rate limits
- REST API, free tier: 1,000 requests per day per key.
- Widget endpoint: keyless, limited per embedding domain and cached for 60 seconds.
- Over the limit returns
429with aRetry-Afterheader. Responses carryRateLimit-Limit,RateLimit-RemainingandRateLimit-Reset. - Need more? Email partners@banxnetwork.com with your usage pattern.
Terms
- Free for commercial and non-commercial use.
- Attribute Banx Network as the source and link to the article URL returned in
url. - Do not alter headlines or present the reporting as your own.
- Caching is encouraged. Please do not poll faster than once a minute — the feed does not change more often than that.
