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

# requestAirdrop



## OpenAPI

````yaml requestairdrop post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
servers:
  - url: https://rpc-mainnet.solanatracker.io
security: []
paths:
  /:
    post:
      summary: requestAirdrop
      operationId: requestairdrop
      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:
                        - requestAirdrop
                      description: The name of the RPC method to invoke.
                      example: requestAirdrop
                      default: requestAirdrop
                params:
                  allOf:
                    - type: array
                      description: Parameters for the airdrop request.
                      default:
                        - F1Pe9T8X6cctqFYT8yvddn7fdQ25GWKVETAYQ5v8o5KQ
                        - 1000000000
                      items:
                        oneOf:
                          - type: string
                            description: >-
                              Solana wallet address (public key) to receive the
                              airdrop of test SOL tokens.
                            example: F1Pe9T8X6cctqFYT8yvddn7fdQ25GWKVETAYQ5v8o5KQ
                          - type: integer
                            description: >-
                              Amount of SOL to airdrop in lamports (1 SOL =
                              1,000,000,000 lamports) for testing.
                            example: 1000000000
                          - type: object
                            description: Configuration object for the airdrop.
                            properties:
                              commitment:
                                type: string
                                description: The commitment level for the request.
                                enum:
                                  - confirmed
                                  - finalized
                                  - processed
                                example: finalized
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              requestAirdrop:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: requestAirdrop
                  params:
                    - F1Pe9T8X6cctqFYT8yvddn7fdQ25GWKVETAYQ5v8o5KQ
                    - 1000000000
      responses:
        '200':
          description: Successfully requested airdrop.
          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: string
                        description: >-
                          Solana transaction signature of the completed airdrop,
                          can be used to verify the SOL was received.
                        example: >-
                          5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
              examples:
                responseExample:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result: >-
                      5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````