> ## 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.

# getMinimumBalanceForRentExemption



## OpenAPI

````yaml getminimumbalanceforrentexemption post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: getMinimumBalanceForRentExemption
      operationId: getminimumbalanceforrentexemption
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      description: The JSON-RPC protocol version.
                      enum:
                        - '2.0'
                      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
                      description: The name of the RPC method to invoke.
                      enum:
                        - getMinimumBalanceForRentExemption
                      example: getMinimumBalanceForRentExemption
                      default: getMinimumBalanceForRentExemption
                params:
                  allOf:
                    - type: array
                      description: Parameters for the method.
                      default:
                        - 50
                      items:
                        oneOf:
                          - type: integer
                            description: >-
                              Size of account data in bytes that you need to
                              store on the Solana blockchain.
                            example: 50
                          - type: object
                            description: Configuration object with additional options.
                            properties:
                              commitment:
                                type: string
                                description: The commitment level for the request.
                                enum:
                                  - confirmed
                                  - finalized
                                  - processed
                                example: finalized
              required:
                - jsonrpc
                - id
                - method
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getMinimumBalanceForRentExemption
                  params:
                    - 50
      responses:
        '200':
          description: Successfully retrieved the minimum balance for rent exemption.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        description: The JSON-RPC protocol version.
                        enum:
                          - '2.0'
                        example: '2.0'
                  id:
                    allOf:
                      - type: string
                        description: Identifier matching the request.
                        example: '1'
                  result:
                    allOf:
                      - type: integer
                        description: >-
                          Minimum SOL balance in lamports required to make an
                          account with this data size permanently rent-exempt.
                        example: 500
              examples:
                example:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result: 500
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````