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

# List Deposit Addresses

> Your deposit address for a given asset.

A new address is generated on first request. If the asset is not
currently accepting deposits, a 404 is returned. In rare cases where
the address is still being created, a 202 Accepted is returned — retry
shortly.



## OpenAPI

````yaml /openapi.json get /api/private/wallet/{asset}/deposit-addresses/
openapi: 3.0.3
info:
  title: Digital Surge API
  version: '2.0'
  description: >-
    Digital Surge is an Australian cryptocurrency exchange. This API provides
    programmatic access to your account: live AUD pricing for hundreds of
    assets, instant swaps, recurring buys, price triggers, portfolio balances,
    transaction history, and crypto withdrawals.


    **Authentication** — create an API key in the Digital Surge app under
    *Account Settings → API Keys* and send it with every request:
    `Authorization: Bearer <your-api-key>`. Read-only and read & write keys are
    available.


    **Guides and interactive documentation** — https://digitalsurge.com.au/docs


    **AI agents** — connect via the Digital Surge MCP server:
    https://mcp.digitalsurge.com.au/mcp
servers:
  - url: https://app.digitalsurge.com.au
    description: Production
security: []
tags:
  - name: Public
    description: Unauthenticated endpoints — market data, asset info, pricing
  - name: Private
    description: Authenticated endpoints — trading, portfolio, account management
paths:
  /api/private/wallet/{asset}/deposit-addresses/:
    get:
      tags:
        - Private
      summary: List Deposit Addresses
      description: |-
        Your deposit address for a given asset.

        A new address is generated on first request. If the asset is not
        currently accepting deposits, a 404 is returned. In rare cases where
        the address is still being created, a 202 Accepted is returned — retry
        shortly.
      operationId: private_wallet_deposit_addresses_list
      parameters:
        - in: path
          name: asset
          schema:
            type: string
            pattern: ^\w{1,10}$
          required: true
        - name: page
          required: false
          in: query
          description: A page number within the paginated result set.
          schema:
            type: integer
        - name: page_size
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/PaginatedIndividualAssetDepositAddressList
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    PaginatedIndividualAssetDepositAddressList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=4
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=2
        results:
          type: array
          items:
            $ref: '#/components/schemas/IndividualAssetDepositAddress'
    IndividualAssetDepositAddress:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        received:
          type: string
          readOnly: true
        active:
          type: string
          readOnly: true
          default: true
        raw_address:
          type: string
          readOnly: true
          nullable: true
      required:
        - active
        - id
        - raw_address
        - received
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Personal API key, created in the Digital Surge app under Account
        Settings → API Keys. Send it with every request as `Authorization:
        Bearer <your-api-key>`.

````