Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Staking Positions via Binance API

Tags:

binance

Is there a way to track your staking positions? All the Savings positions seem to be easy to reference through the API but it doesn't appear that it supports any of the staking functionality (lists, positions, history, purchasing, etc).

I've poured through the Savings section of the API documentation but it doesn't seem to support staking, nor is it in the wallet endpoints.

like image 779
deflime Avatar asked Sep 06 '25 07:09

deflime


1 Answers

You can get your current staking positions by doing a signed GET request to this endpoint

/sapi/v1/staking/position

And get your staking history through this endpoint

/sapi/v1/staking/stakingRecord

For more information about these endpoints and what parameters should be included in the requests, see the official Binance API documentation

like image 162
Wutong Avatar answered Sep 08 '25 00:09

Wutong