|
1 | 1 | # Official EODHD APIs Python Library |
| 2 | + |
2 | 3 | [Full documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/) |
3 | 4 |
|
4 | 5 | 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). |
@@ -28,22 +29,70 @@ To access our APIs, you need to register on our site (it’s free) and obtain an |
28 | 29 |
|
29 | 30 | All functions are described in our [documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/). |
30 | 31 |
|
| 32 | +--- |
| 33 | + |
| 34 | +## Additional supported data (latest updates) |
| 35 | + |
| 36 | +The library also includes newer endpoints and Marketplace datasets: |
| 37 | + |
| 38 | +### Financial News (extended) |
| 39 | + |
| 40 | +* **News Sentiment** (daily sentiment data for tickers) |
| 41 | +* **News Word Weights** (weighted keywords from financial news for a ticker over a date range) |
| 42 | + |
| 43 | +### Live v2 US Stocks |
| 44 | + |
| 45 | +* **Extended Quotes (Delayed, exchange-compliant)** via `/us-quote-delayed` |
| 46 | + Batch tickers supported, optional pagination, JSON/CSV output. |
| 47 | + |
| 48 | +### CBOE Indices Data |
| 49 | + |
| 50 | +* **CBOE Indices List** via `/cboe/indices` |
| 51 | +* **CBOE Index Feed (index + full constituents)** via `/cboe/index` |
| 52 | + Uses deep-object filters: `filter[index_code]`, `filter[feed_type]`, `filter[date]`. |
| 53 | + |
| 54 | +### Identifier Resolution |
| 55 | + |
| 56 | +* **ID Mapping API** (`CUSIP / ISIN / FIGI / LEI / CIK ↔ Symbol`) via `/id-mapping` |
| 57 | + Uses deep-object filters (e.g. `filter[symbol]`, `filter[isin]`) and supports pagination. |
| 58 | + |
| 59 | +### Marketplace datasets (UnicornBay) |
| 60 | + |
| 61 | +* **S&P Global / Indices List** via `/mp/unicornbay/spglobal/list` |
| 62 | +* **Index Components (+ optional historical changes)** via `/mp/unicornbay/spglobal/comp/{symbol}` |
| 63 | + |
| 64 | +### Marketplace datasets (US Stock Options Data API) |
| 65 | + |
| 66 | +* **Underlying symbols list** via `/mp/unicornbay/options/underlying-symbols` |
| 67 | +* **Options contracts** via `/mp/unicornbay/options/contracts` |
| 68 | +* **Options EOD data** via `/mp/unicornbay/options/eod` |
| 69 | + Supports filters, sorting, pagination, field selection, and compact mode (where applicable). |
| 70 | + |
| 71 | +### Technical Indicators (enhanced) |
| 72 | + |
| 73 | +* Includes full function coverage from the current Technical Indicator API, including **BETA** and **DX (alias)**, plus support for: |
| 74 | + |
| 75 | + * `fmt=json|csv` |
| 76 | + * `filter` (e.g. `filter=last_ema`) where supported by the endpoint |
| 77 | + |
| 78 | +--- |
31 | 79 |
|
32 | 80 | ## Installation |
33 | 81 |
|
34 | 82 | In short: |
35 | 83 |
|
| 84 | +```bash |
36 | 85 | python3 -m pip install eodhd -U |
| 86 | +``` |
37 | 87 |
|
38 | 88 | 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 | 89 |
|
40 | 90 | ## Sample code and examples |
41 | 91 |
|
42 | 92 | The files below contain examples of available functions: |
43 | 93 |
|
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 | | - |
| 94 | +* `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.). |
| 95 | +* `example_scanner.py`: describes the functions that can be used in the `ScannerClient` class. |
| 96 | +* `example_websockets.py`: describes the functions that can be used in the `WebSocketClient` class. |
48 | 97 |
|
49 | 98 | New features will be added to the example files. The most relevant functions can be viewed directly in the code files. |
0 commit comments