Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Aug 22, 2024
1 parent ab8ff06 commit 6900cec
Show file tree
Hide file tree
Showing 644 changed files with 1,541 additions and 661 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ To get an API key, [sign up here](https://intrinio.com/).

Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.

- API version: 2.64.1
- Package version: 6.29.1
- API version: 2.66.2
- Package version: 6.30.0


## Requirements.
Expand Down
18 changes: 11 additions & 7 deletions docs/SecurityApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ Name | Type | Description | Notes

[//]: # (START_OVERVIEW)

> ApiResponseSecurityIntervalPrices get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, next_page=next_page)
> ApiResponseSecurityIntervalPrices get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, include_quote_only_bars=include_quote_only_bars, next_page=next_page)
#### Interval Stock Prices for Security

Expand All @@ -1005,15 +1005,16 @@ identifier = 'AAPL'
interval_size = '15m'
source = ''
start_date = '2023-01-01'
start_time = ''
start_time = '33300'
end_date = '2023-02-01'
end_time = ''
end_time = '33300'
timezone = 'UTC'
page_size = 100
split_adjusted = False
include_quote_only_bars = False
next_page = ''

response = intrinio.SecurityApi().get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, next_page=next_page)
response = intrinio.SecurityApi().get_security_interval_prices(identifier, interval_size, source=source, start_date=start_date, start_time=start_time, end_date=end_date, end_time=end_time, timezone=timezone, page_size=page_size, split_adjusted=split_adjusted, include_quote_only_bars=include_quote_only_bars, next_page=next_page)
print(response)

# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
Expand All @@ -1039,6 +1040,7 @@ Name | Type | Description | Notes
**timezone** | str| Returns trading times in this timezone | [optional] [default to UTC]  
**page_size** | int| The number of results to return | [optional] [default to 100]  
**split_adjusted** | bool| Whether to return the values adjusted for splits or not. Default is False. | [optional] [default to False]  
**include_quote_only_bars** | bool| If True, also include bars where no trades occurred but quotes did. | [optional] [default to False]  
**next_page** | str| Gets the next page of data from a previous API call | [optional]  
<br/>

Expand Down Expand Up @@ -1080,7 +1082,7 @@ Name | Type | Description | Notes
#### Intraday Stock Prices for Security


Return intraday stock prices for the Security with the given `identifier`
Deprecated. Return intraday stock prices for the Security with the given `identifier`

[//]: # (END_OVERVIEW)

Expand Down Expand Up @@ -3997,7 +3999,7 @@ Name | Type | Description | Notes

[//]: # (START_OVERVIEW)

> ApiResponseSecurityQuote get_security_quote(identifier, active_only=active_only, next_page=next_page)
> ApiResponseSecurityQuote get_security_quote(identifier, active_only=active_only, source=source, next_page=next_page)
#### Quote for a Security

Expand All @@ -4020,9 +4022,10 @@ intrinio.ApiClient().allow_retries(True)

identifier = 'AAPL'
active_only = False
source = 'delayed_sip'
next_page = ''

response = intrinio.SecurityApi().get_security_quote(identifier, active_only=active_only, next_page=next_page)
response = intrinio.SecurityApi().get_security_quote(identifier, active_only=active_only, source=source, next_page=next_page)
print(response)

# Note: For a Pandas DataFrame, import Pandas and use pd.DataFrame(response.property_name_dict)
Expand All @@ -4040,6 +4043,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | str| A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | &nbsp;
**active_only** | bool| Whether to return only realtime prices from today. | [optional] [default to False] &nbsp;
**source** | str| Return the realtime price from the specified source instead of the most recent. | [optional] &nbsp;
**next_page** | str| Gets the next page of data from a previous API call | [optional] &nbsp;
<br/>

Expand Down
14 changes: 14 additions & 0 deletions docs/StockPriceInterval.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@ Name | Type | Description
**interval** | str | The size of the interval. &nbsp;
**average** | float | The average trade price of an individual stock during the interval. &nbsp;
**change** | float | The change ratio from open to close. ((Close - Open)/Open). &nbsp;
**bid_high** | float | The highest bid price from the interval. &nbsp;
**bid_low** | float | The lowest bid price from the interval. &nbsp;
**bid_close** | float | The last bid price from the interval. &nbsp;
**bid_open** | float | The first bid price from the interval. &nbsp;
**bid_first_time** | datetime | The timestamp that represents the first bid time from the interval span. &nbsp;
**bid_last_time** | datetime | The timestamp that represents the last bid time from the interval span. &nbsp;
**bid_change_percent** | float | The ratio of the close to open bid difference, in percent. &nbsp;
**ask_high** | float | The highest ask price from the interval. &nbsp;
**ask_low** | float | The lowest ask price from the interval. &nbsp;
**ask_close** | float | The last ask price from the interval. &nbsp;
**ask_open** | float | The first ask price from the interval. &nbsp;
**ask_first_time** | datetime | The timestamp that represents the first ask time from the interval span. &nbsp;
**ask_last_time** | datetime | The timestamp that represents the last ask time from the interval span. &nbsp;
**ask_change_percent** | float | The ratio of the close to open ask difference, in percent. &nbsp;

[//]: # (END_DEFINITION)

Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/bulk_downloads_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/company_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/data_point_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/data_tag_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/esg_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/et_fs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/filing_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/forex_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/fundamentals_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/historical_data_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/index_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/insider_transaction_filings_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/market_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/municipality_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/options_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
2 changes: 1 addition & 1 deletion intrinio_sdk/api/owners_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner. # noqa: E501
OpenAPI spec version: 2.64.1
OpenAPI spec version: 2.66.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down
Loading

0 comments on commit 6900cec

Please sign in to comment.