Andrew
Andrew

Reputation: 16051

News API for use in application?

I want to include the latest news as part of my application, does anybody know any news APIs or sites where they say you can use their news for your app?

Upvotes: 2

Views: 2658

Answers (8)

Vasniktel
Vasniktel

Reputation: 307

I used datanews.io. Its REST API worked well in my case.

It also can monitor different news queries - be sure to check that out as well.

Upvotes: 0

yoavcw
yoavcw

Reputation: 1

Both ContextualWeb's News API and newsapi.org offer very generous free tiers (10,000 requests/month on ContextualWeb and 500 requests/day on newsapi.org), and both are very easy to embed in your app or website. You can easily filter by news outlet or topic. ContextualWeb also uses Natural Language Processing to extract the topics from each article, which might make results easier to parse.

Upvotes: 0

Rdg
Rdg

Reputation: 53

If you want stock news specifically I suggest IEX, Alphavantage or stocknewsapi I personally use stock news api as it is the most relevant and the images are great quality. Hope this helps!

Upvotes: 0

Ruzbeh Bacha
Ruzbeh Bacha

Reputation: 1

Not sure if you or anyone else is still looking for a news API but you could get curated financial and business news with relevant financial asset and other tags from here - http://www.cityfalcon.com/financial-news-api. You could also get financial tweets.

Upvotes: 0

Elia Palme
Elia Palme

Reputation: 161

Why not considering a news search API? Newsriver (https://newsriver.io) mines hundreds of thousand online sources and aggregates their news articles. It's API allows to retrieve structured online news articles via simple search queries.

Upvotes: 0

Maya
Maya

Reputation: 1412

Financial News only:

MyAllies Companies Breaking News with JSON output

Example:

http://app.myallies.com/api/news for all companies recent news.

Or

http://app.myallies.com/api/news/amzn for Amazon news.

Free service, no limit (at least for now)

Upvotes: 1

BobC
BobC

Reputation: 655

There is a plenty of RSS reader samples on the internet, for Mac OS X or iPhone. You can use custom XML parser or JSON. Check github for samples.

Upvotes: 1

Jared Pochtar
Jared Pochtar

Reputation: 4985

Use RSS. You can choose feeds from wherever you want, they're widely available. (Just make sure the content owners are okay with it if you are only reading specific feeds.) It's in XML, so there are plenty of libraries for reading that. In fact an RSS reader is typically one of the types of things (next to twitter clients) used to teach iPhone programming, so a little googling will find you lots of sample code.

Upvotes: 6

Related Questions