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

# requestAirdrop

> Pubkey에 라포트를 에어드롭합니다.

## 요청 매개변수

<ParamField body="address" type="string" required>
  에어드롭 받을 테스트 SOL 토큰의 Solana 지갑 주소(공개 키).
</ParamField>

<ParamField body="value" type="number" required>
  테스트를 위한 라포트로 에어드롭할 SOL 양 (1 SOL = 1,000,000,000 라포트).
</ParamField>

<ParamField body="commitment" type="string">
  요청에 대한 커밋 수준.

  * `confirmed`
  * `finalized`
  * `processed`
</ParamField>


## OpenAPI

````yaml ko/openapi/rpc-http/requestAirdrop.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: >-
    애플리케이션 개발, 테스트 및 실험을 위한 계정을 자금 지원하기 위해 테스트 네트워크에서 SOL 토큰 에어드롭을 요청하기 위한 개발
    중심의 Solana API.
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://devnet.helius-rpc.com
    description: Devnet RPC 엔드포인트
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: requestAirdrop
      description: >
        솔라나 테스트 네트워크에서 개발 및 테스트 목적으로 무료 SOL 토큰을 요청합니다. 개발 전용 API로서 개발자가 실제 자금을
        사용하지 않고도 솔라나 애플리케이션을 구축하고 테스트할 수 있도록 devnet 및 testnet 환경에서 지갑에 SOL을 지원할
        수 있습니다. 로컬 개발, CI/CD 파이프라인, 자동화 테스트 및 새로운 Solana 기능 실험에 필수적입니다. 에어드롭된
        SOL은 거래 수수료 지불, 계정 생성 및 비생산 환경에서 금융 로직 테스트에 사용할 수 있습니다.
      operationId: requestAirdrop
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  description: JSON-RPC 프로토콜 버전.
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: 요청에 대한 고유 식별자.
                  example: '1'
                  default: '1'
                method:
                  type: string
                  enum:
                    - requestAirdrop
                  description: 호출할 RPC 메서드의 이름.
                  example: requestAirdrop
                  default: requestAirdrop
                params:
                  type: array
                  description: 에어드롭 요청을 위한 매개변수.
                  default:
                    - 83astBRguLMdt2h5U1Tpdq5tjFoJ6noeGwaY3mDLVcri
                    - 1000000000
                  items:
                    oneOf:
                      - type: string
                        description: 테스트 SOL 토큰 에어드롭을 받을 솔라나 지갑 주소(공개 키).
                        example: 83astBRguLMdt2h5U1Tpdq5tjFoJ6noeGwaY3mDLVcri
                      - type: integer
                        description: 테스트용 에어드롭할 SOL의 양(1 SOL = 1,000,000,000 lamports).
                        example: 1000000000
                      - type: object
                        description: 에어드롭을 위한 구성 객체.
                        properties:
                          commitment:
                            type: string
                            description: 요청에 대한 커밋 수준.
                            enum:
                              - confirmed
                              - finalized
                              - processed
                            example: finalized
      responses:
        '200':
          description: 에어드롭 요청 성공.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPC 프로토콜 버전.
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: 요청과 일치하는 식별자.
                    example: '1'
                  result:
                    type: string
                    description: 완료된 에어드롭의 솔라나 거래 서명이며, SOL 수신 여부를 확인하는 데 사용할 수 있습니다.
                    example: >-
                      5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
              examples:
                responseExample:
                  value:
                    jsonrpc: '2.0'
                    id: '1'
                    result: >-
                      5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
        '400':
          description: 잘못된 요청 - 유효하지 않거나 잘못된 요청 매개변수.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: Invalid params
                id: '1'
        '401':
          description: 권한 없음 - 유효하지 않거나 누락된 API 키.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: Unauthorized
                id: '1'
        '429':
          description: 요청이 너무 많음 - 속도 제한 초과.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: Too many requests
                id: '1'
        '500':
          description: 내부 서버 오류 - 서버에서 오류가 발생했습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: Internal error
                id: '1'
        '503':
          description: 서비스 사용 불가 - 서비스가 일시적으로 사용 불가합니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: Service unavailable
                id: '1'
        '504':
          description: 게이트웨이 시간 초과 - 요청 시간 초과.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: Gateway timeout
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: JSON-RPC 프로토콜 버전.
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: 오류 코드.
              example: -32602
            message:
              type: string
              description: 오류 메시지.
            data:
              type: object
              description: 오류에 대한 추가 데이터.
        id:
          type: string
          description: 요청과 일치하는 식별자.
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        귀하의 Helius API 키. [대시보드](https://dashboard.helius.dev/api-keys)에서 무료로 받을
        수 있습니다.

````