getStakeMinimumDelegation

Returns the stake minimum delegation, in lamports.

📘

Supported on Solana (mainnet) only.

Parameters

  • (optional) <object> - Configuration object containing the following field:

Returns

The result will be an RpcResponse JSON object with value equal to:

  • <u64> - The stake minimum delegation, in lamports

API Endpoint

The format of an Solana API endpoint is
https://open-platform.nodereal.io/{{apiKey}}/solana/

Here is an example:
https://open-platform.nodereal.io/4c0a1c23661a4e26bcbcwed461e34ea9/solana/

Example

Request

curl https://open-platform.nodereal.io/{{apiKey}}/solana/ \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","id":1,"method":"getStakeMinimumDelegation"}'

Result

{
  "jsonrpc": "2.0",
  "result": {
    "context": {
      "slot": 501
    },
    "value": 1000000000
  },
  "id": 1
}