> ## 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 Withdrawals

> Request a withdrawal to a saved address book entry and review past withdrawals.

The destination must be provided as the ID of a confirmed address book
entry rather than a raw address. Two-factor authentication is required,
and first-time addresses require email confirmation before the
withdrawal is released.



## OpenAPI

````yaml /openapi.json get /api/private/v2/wallet/{asset}/withdrawals/
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/v2/wallet/{asset}/withdrawals/:
    get:
      tags:
        - Private
      summary: List Withdrawals
      description: >-
        Request a withdrawal to a saved address book entry and review past
        withdrawals.


        The destination must be provided as the ID of a confirmed address book

        entry rather than a raw address. Two-factor authentication is required,

        and first-time addresses require email confirmation before the

        withdrawal is released.
      operationId: private_v2_wallet_withdrawals_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
        - in: query
          name: status
          schema:
            type: integer
            enum:
              - 10
              - 15
              - 20
              - 30
              - 40
              - 5
              - 50
              - 60
          description: |-
            * `5` - Draft
            * `10` - Pending
            * `15` - Processing...
            * `20` - Error!
            * `30` - Canceled (by user)
            * `40` - Rejected (by operator)
            * `50` - Expired (by system)
            * `60` - Processed
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedIndividualAssetWithdrawalV2List'
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    PaginatedIndividualAssetWithdrawalV2List:
      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/IndividualAssetWithdrawalV2'
    IndividualAssetWithdrawalV2:
      type: object
      description: >-
        V2 Withdrawal serializer that only accepts address book entry IDs.

        This prevents MITM attacks by not accepting raw addresses.

        Includes email confirmation for first-time addresses (same as V1
        endpoint).
      properties:
        id:
          type: integer
          readOnly: true
        amount:
          type: string
          format: decimal
        address:
          type: string
          readOnly: true
        tag:
          type: string
          readOnly: true
        label:
          type: string
          description: Label from address book entry
          readOnly: true
        txid:
          type: string
          readOnly: true
          description: Transaction number associated with this withdrawal.
        created:
          type: string
          format: date-time
          readOnly: true
        closed:
          type: string
          format: date-time
          readOnly: true
          nullable: true
          description: Last status change.
        status:
          allOf:
            - $ref: '#/components/schemas/IndividualAssetWithdrawalV2StatusEnum'
          readOnly: true
      required:
        - address
        - amount
        - closed
        - created
        - id
        - label
        - status
        - tag
        - txid
    IndividualAssetWithdrawalV2StatusEnum:
      enum:
        - 5
        - 10
        - 15
        - 20
        - 30
        - 40
        - 50
        - 60
      type: integer
      description: |-
        * `5` - Draft
        * `10` - Pending
        * `15` - Processing...
        * `20` - Error!
        * `30` - Canceled (by user)
        * `40` - Rejected (by operator)
        * `50` - Expired (by system)
        * `60` - Processed
  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>`.

````