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

# Get apiv1useraccess



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/user/access
openapi: 3.1.0
info:
  title: ekiden-gateway
  description: >-
    API Gateway and WebSocket proxy based on Axum and Utoipa, handling auth,
    rate limiting, and connection buffering.
  license:
    name: ''
  version: 0.1.1
servers:
  - url: https://api.ekiden.fi/
    description: Production
  - url: https://api.cnt.ekiden.fi/
    description: Testnet
  - url: https://api.canton.ekiden.fi/
    description: Staging
security: []
paths:
  /api/v1/user/access:
    get:
      tags:
        - User
      operationId: get_user_access
      responses:
        '200':
          description: Stage-1 access standing
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessStatusResponse'
      security:
        - bearer_auth: []
components:
  schemas:
    AccessStatusResponse:
      type: object
      description: >-
        `GET /user/access` response (spec §6): the authenticated wallet's
        Stage-1

        standing — whether it activated, its cosmetic badge, and its granted

        multiplier (null when never activated).
      required:
        - activated
        - stage1_badge
        - allocation_reserved
      properties:
        activated:
          type: boolean
          description: True once this wallet has activated a closed-launch access code.
        allocation_reserved:
          type: boolean
          description: >-
            Whether a future airdrop allocation is reserved for this wallet

            (season1-conversion §5, S2-D3): true for every activated wallet,
            false

            otherwise. The allocation itself is out of scope; this is the
            persistence

            hook that survives the Stage-1 gate-off.
        multiplier_bps:
          type:
            - integer
            - 'null'
          format: int32
          description: Granted activation multiplier in bps; null when never activated.
          minimum: 0
        stage1_badge:
          type: boolean
          description: Cosmetic Stage-1 badge (spec §6); false for un-activated wallets.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer

````