All URIs are relative to https://api-v2.intrinio.com
| Method | HTTP request | Description |
|---|---|---|
| get_account_current_usage | GET /account | Account Current Usage |
View Intrinio API Documentation
ApiResponseAccountUsages get_account_current_usage()
Returns a list of all access codes available with their current usage.
from __future__ import print_function
import time
import intrinio_sdk as intrinio
from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)
response = intrinio.AccountApi().get_account_current_usage()
print(response)
# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict) This endpoint does not need any parameter.