> ## 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 Deposit Travel Rule

> Get current travel rule data for a deposit.



## OpenAPI

````yaml /openapi.json get /api/private/wallet/{asset}/deposits/{deposit_id}/travel-rule/
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}/deposits/{deposit_id}/travel-rule/:
    get:
      tags:
        - Private
      summary: Get Deposit Travel Rule
      description: Get current travel rule data for a deposit.
      operationId: private_wallet_deposits_travel_rule_list
      parameters:
        - in: path
          name: asset
          schema:
            type: string
            pattern: ^\w{1,10}$
          required: true
        - in: path
          name: deposit_id
          schema:
            type: string
            pattern: ^\d+$
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DepositTravelRuleSubmission'
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    DepositTravelRuleSubmission:
      type: object
      description: Serializer for submitting travel rule data for a specific deposit.
      properties:
        destination_type:
          allOf:
            - $ref: '#/components/schemas/DestinationTypeEnum'
          description: |-
            Where the funds are going: 'personal_wallet' or 'exchange_account'.

            * `personal_wallet` - Personal Wallet
            * `exchange_account` - Exchange Account
        ownership:
          allOf:
            - $ref: '#/components/schemas/OwnershipEnum'
          description: |-
            Who owns the destination: 'self' or 'other'.

            * `self` - Self (Own Account)
            * `other` - Other
        beneficiary_type:
          description: |-
            Required when ownership is 'other': 'individual' or 'organisation'.

            * `individual` - Individual
            * `organisation` - Organisation
          oneOf:
            - $ref: '#/components/schemas/BeneficiaryTypeEnum'
            - $ref: '#/components/schemas/BlankEnum'
        wallet_provider:
          type: string
          description: >-
            Required when destination_type is 'personal_wallet'. See
            /reference-data/ for values.
          maxLength: 50
        wallet_provider_other_name:
          type: string
          description: Name of the wallet provider when wallet_provider is 'other'.
          maxLength: 100
        exchange:
          type: string
          description: >-
            Required when destination_type is 'exchange_account'. See
            /reference-data/ for values.
          maxLength: 50
        exchange_other_name:
          type: string
          description: Name of the exchange when exchange is 'other'.
          maxLength: 100
        beneficiary_full_name:
          type: string
          description: Required when beneficiary_type is 'individual'.
          maxLength: 200
        beneficiary_country:
          type: string
          description: >-
            ISO 3166-1 alpha-2 country code. Required when beneficiary_type is
            'individual'.
          maxLength: 2
        beneficiary_region:
          type: string
          description: >-
            Beneficiary's state, province or region (e.g. an Australian state).
            Optional.
          maxLength: 100
        beneficiary_organisation_name:
          type: string
          description: Required when beneficiary_type is 'organisation'.
          maxLength: 200
        beneficiary_organisation_country:
          type: string
          description: >-
            ISO 3166-1 alpha-2 country code. Required when beneficiary_type is
            'organisation'.
          maxLength: 2
        beneficiary_organisation_region:
          type: string
          description: Beneficiary organisation's state, province or region. Optional.
          maxLength: 100
      required:
        - destination_type
        - ownership
    DestinationTypeEnum:
      enum:
        - personal_wallet
        - exchange_account
      type: string
      description: |-
        * `personal_wallet` - Personal Wallet
        * `exchange_account` - Exchange Account
    OwnershipEnum:
      enum:
        - self
        - other
      type: string
      description: |-
        * `self` - Self (Own Account)
        * `other` - Other
    BeneficiaryTypeEnum:
      enum:
        - individual
        - organisation
      type: string
      description: |-
        * `individual` - Individual
        * `organisation` - Organisation
    BlankEnum:
      enum:
        - ''
  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>`.

````