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

# Get Account

> Retrieve your account tier, plan name, and usage limits.



## OpenAPI

````yaml GET /v1/account
openapi: 3.1.0
info:
  title: LaserSell API
  version: 1.0.0
  description: >
    The LaserSell API builds unsigned Solana transactions for buying and selling
    tokens across supported DEXs.

    All transactions are non-custodial: the API returns unsigned
    `VersionedTransaction` payloads that you sign locally with your own keypair.


    Supported markets: Pump.fun, PumpSwap, Raydium (CPMM, Launchpad), Meteora
    (DBC, DAMM v2).
servers:
  - url: https://api.lasersell.io
    description: Production
security:
  - apiKey: []
tags:
  - name: Trading
    description: Build unsigned buy and sell transactions.
  - name: Account
    description: Account details and trade history.
  - name: Wallets
    description: Wallet registration for the Exit Intelligence Stream.
paths:
  /v1/account:
    get:
      tags:
        - Account
      summary: Get Account
      description: Retrieve your account tier, plan name, and usage limits.
      operationId: getAccount
      responses:
        '200':
          description: Account details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountResponse'
        '401':
          description: Unauthorized. Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AccountResponse:
      type: object
      required:
        - tier
        - tier_name
        - limits
      properties:
        tier:
          type: integer
          enum:
            - 0
            - 1
            - 2
          description: Numeric tier identifier.
          example: 1
        tier_name:
          type: string
          enum:
            - free
            - tier_1
            - tier_2
          description: Human-readable plan name.
          example: tier_1
        limits:
          $ref: '#/components/schemas/AccountLimits'
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
          example: invalid mint address
    AccountLimits:
      type: object
      required:
        - max_wallets
        - max_positions_per_wallet
        - max_positions_per_session
      properties:
        max_wallets:
          type: integer
          description: Maximum wallets you can track simultaneously.
          example: 5
        max_positions_per_wallet:
          type: integer
          description: Maximum open positions per wallet.
          example: 100
        max_positions_per_session:
          type: integer
          description: Maximum total open positions across all wallets.
          example: 500
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your LaserSell API key. Obtain one from the [LaserSell
        dashboard](https://www.lasersell.io).

````