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

# Generate a deposit address for a coin

> Returns a deposit address for the supplied coin, bound to the given platform user. Repeated calls for the same `(symbol, user)` pair may return the same address.



## OpenAPI

````yaml /api-reference/openapi.json get /wallet/{symbol}/{user}
openapi: 3.0.0
info:
  title: Xenios Trading API
  description: >-
    Place and manage orders, stream live market and account data, and read
    wallets, deposits and reference data over one authenticated gateway. All
    protected endpoints are authenticated with an HMAC-SHA256 request signature
    (see the Authentication guide). Decimal amounts are strings; timestamps are
    ISO-8601. Successful responses are wrapped in a standard { statusCode,
    success, message, data } envelope.
  version: '1.0'
  contact: {}
servers:
  - url: https://<your-host>/api/v1/trading
    description: Development gateway. Prefix every trading path with this base URL.
security:
  - xenios-hmac: []
tags:
  - name: Orders
    description: >-
      Place, cancel, and read your orders. Placement is idempotent on
      client_order_id.
  - name: Order Book
    description: Top-of-book depth snapshots for a trading pair.
  - name: Products
    description: Tradable products and pairs, plus OHLCV candles for charting.
  - name: Assets
    description: The assets available to your account.
  - name: Wallets
    description: Generate deposit addresses and read deposit history.
  - name: Account
    description: Your trading fee and effective account settings.
  - name: Health
    description: Liveness and readiness probes.
paths:
  /wallet/{symbol}/{user}:
    get:
      tags:
        - Wallets
      summary: Generate a deposit address for a coin
      description: >-
        Returns a deposit address for the supplied coin, bound to the given
        platform user. Repeated calls for the same `(symbol, user)` pair may
        return the same address.
      operationId: generateDepositAddress
      parameters:
        - name: symbol
          required: true
          in: path
          description: Coin symbol (e.g. `BTC`, `ETH`).
          schema:
            example: BTC
            type: string
        - name: user
          required: true
          in: path
          description: Platform user id this address is bound to.
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiResponse'
                  - properties:
                      data:
                        $ref: '#/components/schemas/DepositAddress'
        '401':
          description: Missing or invalid API credentials.
      security:
        - xenios-hmac:
            - read:assets
components:
  schemas:
    ApiResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code echoed in the body.
          example: 200
        success:
          type: boolean
          description: True for success responses.
          example: true
        message:
          type: string
          description: Human-readable status message.
          example: Request processed successfully
      required:
        - statusCode
        - success
    DepositAddress:
      type: object
      properties:
        address:
          type: string
          description: On-chain deposit address.
          example: bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh
      required:
        - address
  securitySchemes:
    xenios-hmac:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        HMAC-SHA256 authentication. Sign every request and send X-API-KEY,
        X-API-SIGNATURE, X-API-TIMESTAMP and X-API-NONCE (see the Authentication
        guide). Each route also requires a specific claim on your API key (e.g.
        read:orders, write:orders, read:account, read:market-data).

````