> ## Documentation Index
> Fetch the complete documentation index at: https://magicblock-42-dhruvja-docs-navigation-restructure.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Stealth Pool Status

> Derive a stealth-pool PDA from an exact handle and report whether the base account exists. Does not return the destination keys.



## OpenAPI

````yaml pages/ephemeral-spl-token/api-reference/openapi/stealth-pool.openapi.json GET /v1/spl/stealth-pool
openapi: 3.1.0
info:
  title: Private Payments API
  version: 0.1.0
  description: >-
    Create and look up stealth pools that map a human-readable handle to one or
    more destination keys for private transfers.
servers:
  - url: https://payments.magicblock.app
    description: Mainnet - Private Payments API
security: []
paths:
  /v1/spl/stealth-pool:
    get:
      summary: Get Stealth Pool Status
      description: >-
        Derive a stealth-pool PDA from an exact handle and report whether the
        base account exists. Does not return the destination keys.
      parameters:
        - name: handle
          in: query
          required: true
          description: >-
            The exact handle (up to 255 UTF-8 bytes). Must match the stored
            bytes exactly.
          schema:
            type: string
            minLength: 1
            maxLength: 255
            example: john.doe@magicblock.id
        - name: cluster
          in: query
          required: false
          description: Optional. Cluster selector or custom http(s) RPC URL.
          schema:
            anyOf:
              - type: string
                enum:
                  - mainnet
                  - devnet
                  - mainnet-private
                  - devnet-private
              - type: string
                format: uri
            example: mainnet
      responses:
        '200':
          description: Stealth pool status
          content:
            application/json:
              schema:
                type: object
                properties:
                  stealthPool:
                    type: string
                    description: Derived stealth-pool PDA.
                  exists:
                    type: boolean
                    description: Whether the base account exists.
                required:
                  - stealthPool
                  - exists
              example:
                stealthPool: 9xQeWv...PDA
                exists: true
        '400':
          description: Query error
        '422':
          description: Validation error

````