Skip to content

Commit

Permalink
Merge pull request #1302 from tmors/modify-options-url
Browse files Browse the repository at this point in the history
modify options url
  • Loading branch information
sammchardy committed Apr 19, 2023
2 parents 0647f4d + fef63c9 commit a354b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binance/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class BaseClient:
FUTURES_COIN_TESTNET_URL = 'https://testnet.binancefuture.com/dapi'
FUTURES_COIN_DATA_URL = "https://dapi.binance.{}/futures/data"
FUTURES_COIN_DATA_TESTNET_URL = 'https://testnet.binancefuture.com/futures/data'
OPTIONS_URL = 'https://vapi.binance.{}/vapi'
OPTIONS_URL = 'https://eapi.binance.{}/eapi'
OPTIONS_TESTNET_URL = 'https://testnet.binanceops.{}/vapi'
PUBLIC_API_VERSION = 'v1'
PRIVATE_API_VERSION = 'v3'
Expand Down

2 comments on commit a354b25

@reginaldreginaldgolden

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't give up

@janekaze
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2023-06-28

Notice:

REST

The following endpoints will no longer be supported from 2023-07-15:
GET /fapi/v1/account
GET /fapi/v1/balance
GET /fapi/v1/positionRisk
Please switch to corresponding v2 endpoints:
GET /fapi/v2/account
GET /fapi/v2/balance
GET /fapi/v2/positionRisk

@sammchardy Please Fix

Please sign in to comment.