> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# getStakeMinimumDelegation

> Runs the Solana RPC `getStakeMinimumDelegation` method.



## OpenAPI

````yaml getstakeminimumdelegation post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
  description: Solana RPC HTTP method reference.
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: Run `getStakeMinimumDelegation`
      description: Runs the Solana RPC `getStakeMinimumDelegation` method.
      operationId: getstakeminimumdelegation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      enum:
                        - '2.0'
                      description: The JSON-RPC protocol version.
                      example: '2.0'
                      default: '2.0'
                id:
                  allOf:
                    - type: string
                      description: A unique identifier for the request.
                      example: '1'
                      default: '1'
                method:
                  allOf:
                    - type: string
                      enum:
                        - getStakeMinimumDelegation
                      description: The name of the RPC method to invoke.
                      example: getStakeMinimumDelegation
                      default: getStakeMinimumDelegation
                params:
                  allOf:
                    - type: array
                      description: Optional configuration object.
                      items:
                        type: object
                        properties:
                          commitment:
                            type: string
                            description: The commitment level for the request.
                            enum:
                              - confirmed
                              - finalized
                              - processed
                            example: finalized
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getStakeMinimumDelegation
                  params:
                    - commitment: finalized
      responses:
        '200':
          description: Successfully retrieved the stake minimum delegation.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        enum:
                          - '2.0'
                        description: The JSON-RPC protocol version.
                        example: '2.0'
                  id:
                    allOf:
                      - type: string
                        description: Identifier matching the request.
                        example: '1'
                  result:
                    allOf:
                      - type: object
                        description: Context and minimum delegation value.
                        properties:
                          context:
                            type: object
                            description: Context of the response.
                            properties:
                              slot:
                                type: integer
                                description: Slot in which the data was fetched.
                                example: 501
                          value:
                            type: integer
                            description: >-
                              The minimum SOL amount (in lamports) required to
                              create an active stake delegation on the Solana
                              network.
                            example: 1000000000
              examples:
                success:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      context:
                        slot: 501
                      value: 1000000000
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````