Stakes

Returns a list of all your stake accounts, with on chain status and balances

network

groups

stake_authority

withdraw_authority

200 List Stakes

400 Invalid request

Example Request

curl --request GET \
     --url 'https://api.figment.io/solana/stakes?network=mainnet' \
     --header 'accept: application/json' \
     --header 'x-api-key: your-api-key-here'

Example Response

{
  "data": [
    {
      "id": "031af36c-508a-4f3d-84dd-f46d9e59428f",
      "network": "devnet",
      "stake_account": "string",
      "status": "string",
      "vote_account": "string",
      "stake_authority": "string",
      "withdraw_authority": "string",
      "balance": "string",
      "active_balance": "string",
      "inactive_balance": "string",
      "balance_usd": "string",
      "active_balance_usd": "string",
      "inactive_balance_usd": "string"
    }
  ]
}