Hello,
I’ve found some mismatches in documentation regarding weights, that differs from real responses.
GET /fapi/v1/income
- In documentation it says that weight is
1
, but actual weight is20
.
GET /fapi/v1/fundingRate
- This endpoint is actually not on the Testnet documentation, but it is on the Perpetual documentation.
- It is accessible through the Testnet.
- Its response headers doesn’t contain any consumed weight and in fact doesn’t substract any request weight. Is this ok?
GET /fapi/v1/ping
- In documentation it says that weight is
1
, but actual is0
(also missing header).
GET /fapi/v1/depth
- When I send this request with querystring
limit=1000
, I only get 30 or so results. I guess that’s because there is not enough data on the Testnet. - But when I send it with limit of
1000
, it should have weight of20
, but actual weight is only5
.
GET /fapi/v1/positionSide/dual
- Just out of curiosity, why is this request so expensive (weight
30
), when it only returns simple object with one property?
PS: I am testing this on the Binance Futures Testnet.