Skip to content

Instantly share code, notes, and snippets.

@PatrickAlphaC
Last active January 21, 2020 17:29
Show Gist options
  • Save PatrickAlphaC/ef30c4bd3e5913d0512ce2fd3f50507c to your computer and use it in GitHub Desktop.
Save PatrickAlphaC/ef30c4bd3e5913d0512ce2fd3f50507c to your computer and use it in GitHub Desktop.
Simple Intrinio Startup
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