Skip to content

Instantly share code, notes, and snippets.

@alexnsolo
Last active May 7, 2020 19:43
Show Gist options
  • Save alexnsolo/22e96c07ced99133f8952ef9863bec38 to your computer and use it in GitHub Desktop.
Save alexnsolo/22e96c07ced99133f8952ef9863bec38 to your computer and use it in GitHub Desktop.
Intrinio API for Insider Ownership of AAPL
# https://api.intrinio.com/companies/insider_ownership?identifier=AAPL&api_key={YOUR_API_KEY}
{
"data": [
{
"owner_cik": "0001214128",
"owner_name": "LEVINSON ARTHUR D",
"last_reported_date": "2020-02-04",
"value": 345749000,
"amount": 1150083
},
{
"owner_cik": "0001214156",
"owner_name": "COOK TIMOTHY D",
"last_reported_date": "2020-01-02",
"value": 254925000,
"amount": 847969
},
{
"owner_cik": "0001007844",
"owner_name": "JOBS STEVEN P",
"last_reported_date": "2007-08-15",
"value": 238204000,
"amount": 792350.142857144
},
...
],
"result_count": 43,
"page_size": 100,
"current_page": 1,
"total_pages": 1,
"api_call_credits": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment