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

# Get Wallet Transaction

> Wallet transactions for a given asset, with AUD-equivalent values.

Every deposit, withdrawal, trade, swap, fee, or adjustment that affects
your balance of this asset appears here as a single entry. Each entry
also includes the AUD value at the time of the transaction, and a
downloadable invoice is available for trades and swaps.



## OpenAPI

````yaml /openapi.json get /api/private/v2/wallet/{asset}/wallet-transactions/{id}/
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}/wallet-transactions/{id}/:
    get:
      tags:
        - Private
      summary: Get Wallet Transaction
      description: |-
        Wallet transactions for a given asset, with AUD-equivalent values.

        Every deposit, withdrawal, trade, swap, fee, or adjustment that affects
        your balance of this asset appears here as a single entry. Each entry
        also includes the AUD value at the time of the transaction, and a
        downloadable invoice is available for trades and swaps.
      operationId: private_v2_wallet_wallet_transactions_retrieve
      parameters:
        - in: path
          name: asset
          schema:
            type: string
            pattern: ^\w{1,10}$
          required: true
        - in: query
          name: format
          schema:
            type: string
            enum:
              - concise
              - json
        - in: path
          name: id
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IndividualAssetWalletIOV2'
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    IndividualAssetWalletIOV2:
      type: object
      description: >-
        A wallet transaction: a single deposit or withdrawal of an asset, with
        its status and amounts.
      properties:
        id:
          type: integer
          readOnly: true
        created:
          type: string
          format: date-time
          readOnly: true
        src_amount:
          type: string
          readOnly: true
        dst_amount:
          type: string
          readOnly: true
        object_id:
          type: integer
          readOnly: true
        resulting_balance:
          type: string
          format: decimal
          readOnly: true
          nullable: true
          description: Point-in-time balance
        exchange_rate:
          type: string
          readOnly: true
        cost:
          type: string
          readOnly: true
        fee:
          type: string
          readOnly: true
        status:
          type: string
          readOnly: true
        transaction_type:
          type: string
          readOnly: true
        transaction_subtype:
          type: string
          readOnly: true
        src_asset:
          type: string
          readOnly: true
        dst_asset:
          type: string
          readOnly: true
        quote_cost:
          type: string
          readOnly: true
        aud_fee:
          type: string
          readOnly: true
        aud_value:
          type: string
          readOnly: true
        fee_currency:
          type: string
          readOnly: true
      required:
        - aud_fee
        - aud_value
        - cost
        - created
        - dst_amount
        - dst_asset
        - exchange_rate
        - fee
        - fee_currency
        - id
        - object_id
        - quote_cost
        - resulting_balance
        - src_amount
        - src_asset
        - status
        - transaction_subtype
        - transaction_type
  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>`.

````