SourceWire API v1
Quick Start
Consume the full newswire in under a minute: no key, no fee, no account.
SourceWire is a completely free financial newswire. Everything below is public: no API key, no account, no fee, no licensing gate. Articles are financial information and journalism, not investment advice.
Pull the wire in 60 seconds
curl "https://sourcewire.spindevs.com/feeds/main.rss"Prefer JSON? The API returns the same stories with the full article body included:
curl "https://sourcewire.spindevs.com/api/v1/articles?limit=20"Response envelope
{
"data": [{ "id": "sw_…", "title": "…", "body": "Full article text…", "license": "…", "attribution": "…" }],
"meta": { "has_more": false, "next_cursor": null }
}Reads are CORS-enabled (Access-Control-Allow-Origin: *), so you can call the API directly from a browser app. When you republish, please keep the attribution described under Attribution.