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

# Get tier info for a user based on percentile-based thresholds



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/points/tier
openapi: 3.1.0
info:
  title: Decibel Trading API
  description: >-
    RESTful API for Decibel. Provides read-only endpoints for market data,
    trading operations, positions, and analytics.
  contact:
    name: Decibel Team
    url: https://decibel.trade/
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.mainnet.aptoslabs.com/decibel
    description: Mainnet
  - url: https://api.testnet.aptoslabs.com/decibel
    description: Testnet
security:
  - bearerAuth: []
tags:
  - name: Market Data
    description: Market information and real-time data endpoints
  - name: User
    description: User information and account management
  - name: Account
    description: Account-specific endpoints and data
  - name: Trades
    description: Trading operations and history
  - name: Positions
    description: User position management
  - name: Orders
    description: Order management and history
  - name: TWAP
    description: Time-weighted average price orders
  - name: Bulk Orders
    description: Bulk order management
  - name: Vaults
    description: Vault operations and management
  - name: Analytics
    description: Analytics and performance metrics
  - name: Points
    description: Points-related account metrics
  - name: Trading Points
    description: Trading points endpoints
  - name: Trading Hz
    description: Trading Hz endpoints
  - name: Tier
    description: Tier information endpoints
  - name: Streaks
    description: User streak tracking endpoints
  - name: Predeposit Rewards
    description: Season 0 predeposit USDC rewards
  - name: Referrals
    description: Referral code management and tracking
  - name: Affiliates
    description: Affiliate code and earnings endpoints
paths:
  /api/v1/points/tier:
    get:
      tags:
        - Tier
      summary: Get tier info for a user based on percentile-based thresholds
      operationId: handle_tier_info
      parameters:
        - name: owner
          in: query
          description: Owner wallet address
          required: true
          schema:
            type: string
          example: '0xb8a5788314451ce4d2fbbad32e1bad88d4184b73943b7fe5166eab93cf1a5a95'
      responses:
        '200':
          description: Tier info with progress
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TierInfoDto'
        '400':
          description: Invalid address format
        '500':
          description: Database error
components:
  schemas:
    TierInfoDto:
      type: object
      description: Tier info response for a user
      required:
        - owner
        - total_amps
        - tiers
      properties:
        current_tier:
          type:
            - string
            - 'null'
          description: User's current tier (null if below gold)
        owner:
          type: string
          description: Owner address
        rank:
          type:
            - integer
            - 'null'
          format: int32
          description: User's rank (null if not on leaderboard)
          minimum: 0
        tiers:
          type: array
          items:
            $ref: '#/components/schemas/TierThresholdDto'
          description: All tier thresholds with progress
        total_amps:
          type: number
          format: double
          description: User's total amps
    TierThresholdDto:
      type: object
      description: Individual tier threshold with progress
      required:
        - name
        - hz_threshold
        - progress
      properties:
        hz_threshold:
          type: number
          format: double
          description: Amps value needed to reach this tier
        name:
          type: string
          description: 'Tier name: "gold", "doublePlatinum", or "diamond"'
        progress:
          type: integer
          format: int32
          description: User's progress toward this tier (0-100)
          minimum: 0
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from Geomi. See
        [Authentication](/api-reference/rest/authentication) for setup
        instructions.

````