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

# Get deposit address (v1)

> Get deposit address



## OpenAPI

````yaml /openapi-v1.json get /api/v1/wallet/user_deposit_address
openapi: 3.1.0
info:
  title: Saber Money API (v1)
  version: v1
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v1/wallet/user_deposit_address:
    get:
      tags:
        - Transfer Crypto
      summary: Get deposit address (v1)
      description: Get deposit address
      operationId: get-deposit-address-v1
      parameters:
        - name: symbol
          in: query
          required: true
          description: The symbol parameter
          schema:
            type: string
            description: The symbol parameter
        - name: network
          in: query
          required: true
          description: The network parameter
          schema:
            type: string
            description: The network parameter
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        network:
                          type: string
                        name:
                          type: string
                        coin:
                          type: string
                        address:
                          type: string
                        tag:
                          type: string
                        url:
                          type: string
              example:
                success: true
                data:
                  - network: BNB
                    name: Binance Chain (BEP2)
                    coin: BTC
                    address: bnb136ns6lfw4zs5hg4n85vdthaad7hq5m4gtkgf23
                    tag: '407410902'
                    url: >-
                      https://explorer.binance.org/address/bnb136ns6lfw4zs5hg4n85vdthaad7hq5m4gtkgf23
                  - network: BSC
                    name: Binance Smart Chain (BEP20)
                    coin: BTC
                    address: '0xc37e9cbe6e1d481d9372585e1b91cb387853d352'
                    tag: ''
                    url: >-
                      https://bscscan.com/address/0xc37e9cbe6e1d481d9372585e1b91cb387853d352
                  - network: BTC
                    name: Bitcoin
                    coin: BTC
                    address: 1HTs5QzAfwfxjPBKWtKxTBNYkGmReMS36M
                    tag: ''
                    url: >-
                      https://blockchair.com/bitcoin/address/1HTs5QzAfwfxjPBKWtKxTBNYkGmReMS36M
                  - network: ETH
                    name: Ethereum (ERC20)
                    coin: BTC
                    address: '0xc37e9cbe6e1d481d9372585e1b91cb387853d352'
                    tag: ''
                    url: >-
                      https://etherscan.io/address/0xc37e9cbe6e1d481d9372585e1b91cb387853d352
                  - network: SEGWITBTC
                    name: BTC(SegWit)
                    coin: BTC
                    address: bc1q3mchv2exf8z2v577n8nlcmgduguw22ryxgyxlv
                    tag: ''
                    url: >-
                      https://blockchain.coinmarketcap.com/zh/address/bitcoin/bc1q3mchv2exf8z2v577n8nlcmgduguw22ryxgyxlv

````

## Related topics

- [Get all deposit transactions (v1)](/api-reference/transfer-crypto/get-all-deposit-transactions-v1.md)
- [Get Crypto Deposit Transaction Details (v1)](/api-reference/wallet-operations/get-crypto-deposit-transaction-details-v1.md)
- [Get Wallet Address (v1)](/api-reference/wallet-operations/get-wallet-address-v1.md)
- [Get Supported Networks and Limits (v1)](/api-reference/wallet-operations/get-supported-networks-and-limits-v1.md)
- [Get Transaction Details (v1)](/api-reference/offramp/get-transaction-details-v1.md)
