You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the official Python library developed by [EODHD](https://eodhd.com) for accessing various financial data via API in your code. If you have any feedback or questions, you can reach out to our support team, available 24/7 via live chat on [our website](https://eodhd.com).
@@ -9,7 +10,6 @@ To access our APIs, you need to register on our site (it’s free) and obtain an
9
10
10
11
* End of the Day Historical Stock Market Data
11
12
* Live (Delayed) Stock Prices and Macroeconomic Data
12
-
* Bonds Fundamentals
13
13
* Intraday Historical Data
14
14
* Historical Dividends
15
15
* Historical Splits
@@ -28,22 +28,70 @@ To access our APIs, you need to register on our site (it’s free) and obtain an
28
28
29
29
All functions are described in our [documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/).
30
30
31
+
---
32
+
33
+
## Additional supported data (latest updates)
34
+
35
+
The library also includes newer endpoints and Marketplace datasets:
36
+
37
+
### Financial News (extended)
38
+
39
+
***News Sentiment** (daily sentiment data for tickers)
40
+
***News Word Weights** (weighted keywords from financial news for a ticker over a date range)
41
+
42
+
### Live v2 US Stocks
43
+
44
+
***Extended Quotes (Delayed, exchange-compliant)** via `/us-quote-delayed`
***ID Mapping API** (`CUSIP / ISIN / FIGI / LEI / CIK ↔ Symbol`) via `/id-mapping`
56
+
Uses deep-object filters (e.g. `filter[symbol]`, `filter[isin]`) and supports pagination.
57
+
58
+
### Marketplace datasets (UnicornBay)
59
+
60
+
***S&P Global / Indices List** via `/mp/unicornbay/spglobal/list`
61
+
***Index Components (+ optional historical changes)** via `/mp/unicornbay/spglobal/comp/{symbol}`
62
+
63
+
### Marketplace datasets (US Stock Options Data API)
64
+
65
+
***Underlying symbols list** via `/mp/unicornbay/options/underlying-symbols`
66
+
***Options contracts** via `/mp/unicornbay/options/contracts`
67
+
***Options EOD data** via `/mp/unicornbay/options/eod`
68
+
Supports filters, sorting, pagination, field selection, and compact mode (where applicable).
69
+
70
+
### Technical Indicators (enhanced)
71
+
72
+
* Includes full function coverage from the current Technical Indicator API, including **BETA** and **DX (alias)**, plus support for:
73
+
74
+
*`fmt=json|csv`
75
+
*`filter` (e.g. `filter=last_ema`) where supported by the endpoint
76
+
77
+
---
31
78
32
79
## Installation
33
80
34
81
In short:
35
82
83
+
```bash
36
84
python3 -m pip install eodhd -U
85
+
```
37
86
38
87
If you have any difficulties, go to our full [documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/) with step by step instructions.
39
88
40
89
## Sample code and examples
41
90
42
91
The files below contain examples of available functions:
43
92
44
-
* example_api.py: describes the functions that can be used in the APIClient class.
45
-
* example_scanner.py: describes the functions that can be used in the ScannerClient class.
46
-
* example_websockets.py: describes the functions that can be used in the WebSocketClient class.
47
-
93
+
*`example_api.py`: describes the functions that can be used in the `APIClient` class (including new endpoints: Options, CBOE, ID Mapping, Live v2 Extended Quotes, News Word Weights, etc.).
94
+
*`example_scanner.py`: describes the functions that can be used in the `ScannerClient` class.
95
+
*`example_websockets.py`: describes the functions that can be used in the `WebSocketClient` class.
48
96
49
97
New features will be added to the example files. The most relevant functions can be viewed directly in the code files.
0 commit comments