Skip to content

Commit 005507d

Browse files
committed
Added options quoting interface endpoints docs to Endpoints.md
1 parent 66aaf14 commit 005507d

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Endpoints.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -783,6 +783,52 @@
783783
> :warning: Not yet implemented
784784
- *User Data Streams*
785785
> :warning: Not yet implemented
786+
### [Vanilla Options](https://binance-docs.github.io/apidocs/voptions/en/)
787+
- *Quoting interface*
788+
- **GET /vapi/v1/ping** (Test connectivity)
789+
```python
790+
client.options_ping()
791+
```
792+
- **GET /vapi/v1/time** (Get server time)
793+
```python
794+
client.options_time()
795+
```
796+
- **GET /vapi/v1/optionInfo** (Get current trading pair info)
797+
```python
798+
client.options_info()
799+
```
800+
- **GET /vapi/v1/exchangeInfo** (Get current limit info and trading pair info)
801+
```python
802+
client.options_exchange_info()
803+
```
804+
- **GET /vapi/v1/index** (Get the spot index price)
805+
```python
806+
client.options_index_price(underlying)
807+
```
808+
- **GET /vapi/v1/ticker** (Get the latest price)
809+
```python
810+
client.options_price(symbol)
811+
```
812+
- **GET /vapi/v1/mark** (Get the latest mark price)
813+
```python
814+
client.options_mark_price(symbol)
815+
```
816+
- **GET /vapi/v1/depth** (Depth information)
817+
```python
818+
client.options_order_book(symbol, limit)
819+
```
820+
- **GET /vapi/v1/klines** (Candle data)
821+
```python
822+
client.options_klines(symbol, interval, startTime, endTime, limit)
823+
```
824+
- **GET /vapi/v1/trades** (Recently completed Option trades)
825+
```python
826+
client.options_recent_trades(symbol, limit)
827+
```
828+
- **GET /vapi/v1/historicalTrades** (Query trade history)
829+
```python
830+
client.options_historical_trades(symbol, fromId, limit)
831+
```
786832
### [COIN-M Futures](https://binance-docs.github.io/apidocs/delivery/en/)
787833
> :warning: Not yet implemented
788834
### [USDT-M Futures testnet](https://binance-docs.github.io/apidocs/testnet/en/)

0 commit comments

Comments
 (0)