Last active
January 21, 2020 17:29
-
-
Save PatrickAlphaC/ef30c4bd3e5913d0512ce2fd3f50507c to your computer and use it in GitHub Desktop.
Simple Intrinio Startup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
key = 'XXXX' | |
# Get a key from https://intrinio.com/ | |
ticker = 'MSFT' | |
url = 'https://api-v2.intrinio.com/companies/{}?api_key={}'.format(ticker, key) | |
response = requests.get(url) | |
print(response.json()) | |
# Python wrappers also available from Intrinio | |
# https://docs.intrinio.com/documentation/python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment