Skip to content

Commit f362a4b

Browse files
committed
Readme updated
1 parent 0064bcb commit f362a4b

1 file changed

Lines changed: 53 additions & 4 deletions

File tree

README.md

Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Official EODHD APIs Python Library
2+
23
[Full documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/)
34

45
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
2829

2930
All functions are described in our [documentation](https://eodhd.com/financial-apis/python-financial-libraries-and-code-samples/).
3031

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+
---
3179

3280
## Installation
3381

3482
In short:
3583

84+
```bash
3685
python3 -m pip install eodhd -U
86+
```
3787

3888
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.
3989

4090
## Sample code and examples
4191

4292
The files below contain examples of available functions:
4393

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.
4897

4998
New features will be added to the example files. The most relevant functions can be viewed directly in the code files.

0 commit comments

Comments
 (0)