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

# Check whether a wallet needs HyperEVM HYPE gas for sHLP actions. Versioned alias for /api/faucet.



## OpenAPI

````yaml /mintlify/openapi/signalite.json get /api/v1/gas/status
openapi: 3.1.0
info:
  title: Signalite sHLP Partner API
  version: 1.0.0
  description: >-
    Read-only partner API for Signalite sHLP product state, history, positions,
    activity, and redemption lifecycle data.
servers:
  - url: https://portal.signalite.ai
security: []
tags:
  - name: Product
  - name: Account
  - name: Operations
  - name: Partner Actions
paths:
  /api/v1/gas/status:
    get:
      tags:
        - Operations
      summary: >-
        Check whether a wallet needs HyperEVM HYPE gas for sHLP actions.
        Versioned alias for /api/faucet.
      operationId: getGasStatusV1
      parameters:
        - name: address
          in: query
          required: true
          schema:
            type: string
            pattern: ^0x[a-fA-F0-9]{40}$
          example: '0xB4a1168b8Ea05aF1536aC990F4940e50E0Be17f1'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GasStatus'
        '400':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GasStatus'
        '403':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GasStatus'
        '429':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GasStatus'
        '503':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GasStatus'
components:
  schemas:
    GasStatus:
      type: object
      required:
        - faucetEnabled
      properties:
        balance:
          type: string
          example: '0.0004'
        needsGas:
          type: boolean
        minRequired:
          type: string
          example: '0.001'
        faucetEnabled:
          type: boolean
        faucetAmount:
          type: string
          example: '0.01'
        error:
          type: string

````