免费的JSON格式股票报价API(现场或历史)

Ram*_*shi 32 api live stock

我有一个项目,我实施所有国家的各种公司的实时股票更新.

任何人都可以告诉我在哪里可以找到"免费API"来获取这些细节.我已经在Google上搜索了很多只找到"Pro API".需要帮忙 :)

Mri*_*boj 46

检查以下它们是免费的,它们生成Json,但是对于不同的交换,您需要确保使用正确的语法.甚至雅虎财经也运作良好,但它有一些关于NSE和BSE数据的问题,这些数据总是生成Null

DEPRECATEDGoogle财经 - NSE

URL - http://www.google.com/finance/info?q=NSE:AIAENG,ATULAUTO,<Add more NSE codes>
Run Code Online (Sandbox Code Playgroud)

DEPRECATED Google财经 - 疯牛病

URL -http://www.google.com/finance/info?q=BOM:524091,532683,<Add more BSE codes>
Run Code Online (Sandbox Code Playgroud)

DEPRECATED 其他数据源(Json)

URL - http://live-nse.herokuapp.com/?symbol=AIAENG,ATULAUTO,<Add more NSE codes>
Run Code Online (Sandbox Code Playgroud)

Python实用程序(NSE)

URL - http://nsetools.readthedocs.org/en/latest/index.html
Run Code Online (Sandbox Code Playgroud)

  • 作为软件开发人员,我建议[Alpha Vantage](http://www.alphavantage.co/).他们为实时和历史股票报价提供免费的JSON API.[here](http://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo)是MSFT的实时日内数据.[here](http://www.alphavantage.co/documentation/)是他们的完整API文档.您需要一个API密钥,可以在他们的网站上免费获得. (9认同)
  • 是不是Google财经API [已弃用](http://googlecode.blogspot.com.br/2011/05/spring-cleaning-for-some-of-our-apis.html)? (3认同)
  • 这个api是折旧的,它从2017年9月起不起作用.总是返回404错误. (2认同)