项目作者: mumfie2003

项目描述 :
Sample VBA code to get JSON response from REST API
高级语言:
项目地址: git://github.com/mumfie2003/VBA-GetJSON-RESTApi.git
创建时间: 2019-07-01T09:59:07Z
项目社区:https://github.com/mumfie2003/VBA-GetJSON-RESTApi

开源协议:MIT License

下载


VBA-GetJSON-RESTApi

Sample Excel VBA code to get JSON response from a JSON REST API
This example uses an API to return share values from https://www.alphavantage.co

The following shows an example JSON response

  1. {
  2. "Global Quote": {
  3. "01. symbol": "BNC.L",
  4. "02. open": "362.7000",
  5. "03. high": "365.7500",
  6. "04. low": "360.3200",
  7. "05. price": "361.4500",
  8. "06. volume": "292676",
  9. "07. latest trading day": "2019-06-27",
  10. "08. previous close": "363.2500",
  11. "09. change": "-1.8000",
  12. "10. change percent": "-0.4955%"
  13. }
  14. }

In order to run the code you will need to register for an API key at https://www.alphavantage.co and assign to the VBA code const API_SECRET_KEY

IMPORTANT This code is provided as is without warranty of any kind and your use is at your own risk.

Source files are provided in TXT format which can be pasted into a new module in the excel VBA editor

The following steps are based on Excel 2016

goto url https://www.alphavantage.co and register for API key

Access the VBA editor

alt text

Macro name
Right click modules

Insert New Module and name AlphaAdvantage

paste code from alphaAdvantage.txt

Insert New Module and name VBAJson

paste code from VbaJson.txt

open module AlphaAdvantage

at top of module API_SECRET_KEY add your API key from above

Add dependencies via \Tools References

alt text

Microsoft ActiveX Data Objects 2.8 library

Microsoft Scription Runtime

Initial Test

At the bottom of module AlphaAdvantage is a sub Test.

place cursor within and run code then view the IDE Immediate window to view the Json data recieved from the REST API

alt text

Customize

amend code as required to return your symbols, assign data to spreadsheet cells etc.

Credits

Thanks to the following websites which provided sample code and helpful insight

https://www.advaiya.com/blog/calling-azure-rest-service-vba/

https://codingislove.com/excel-json/

https://github.com/VBA-tools/VBA-JSON/issues/135