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

# Get crypto deposit Travel Rule requirements

> Returns the sender information fields required to release a held crypto deposit. Use the transaction ID from wallet transaction reads.



## OpenAPI

````yaml /openapi/openapi.json get /partner/wallets/crypto/deposits/{id}/travel-rule
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/wallets/crypto/deposits/{id}/travel-rule:
    get:
      tags:
        - Wallets
      summary: Get crypto deposit Travel Rule requirements
      description: >-
        Returns the sender information fields required to release a held crypto
        deposit. Use the transaction ID from wallet transaction reads.
      operationId: get_partner_wallets_crypto_deposits_id_travel_rule
      parameters:
        - name: id
          in: path
          description: >-
            Public wallet transaction ID returned by the transaction list
            endpoint.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Travel Rule requirement
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/TravelRuleRequirementResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  fields:
                    - label: Sender name
                      name: sender_originator
                      required: true
                    - label: Sender country
                      name: sender_country
                      required: true
                    - label: Purpose
                      name: purpose
                      options:
                        - label: Personal transfer
                          value: personal_transfer
                        - label: Business payment
                          value: business_payment
                        - label: Goods or services
                          value: goods_or_services
                        - label: Investment or savings
                          value: investment_or_savings
                        - label: Other
                          value: other
                      required: true
                  status: required
                  transaction_id: 019bd2d1-4e10-77ab-88d4-93f43d6a6df2
                status: success
        '400':
          description: Invalid transaction id
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: VALIDATION_FAILED
                      message:
                        type: string
                        example: invalid request parameters
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: VALIDATION_FAILED
                  message: invalid request parameters
                status: error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: UNAUTHORIZED
                      message:
                        type: string
                        example: missing X-Api-Key header
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: UNAUTHORIZED
                  message: missing X-Api-Key header
                status: error
        '404':
          description: Travel Rule case not found
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: NOT_FOUND
                      message:
                        type: string
                        example: resource not found
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: NOT_FOUND
                  message: resource not found
                status: error
      security:
        - api_key: []
components:
  schemas:
    TravelRuleRequirementResponse:
      type: object
      required:
        - transaction_id
        - status
        - fields
      properties:
        fields:
          type: array
          items:
            $ref: '#/components/schemas/TravelRuleFieldRequirement'
        status:
          $ref: '#/components/schemas/RequiredActionStatus'
        transaction_id:
          type: string
    TravelRuleFieldRequirement:
      type: object
      required:
        - name
        - label
        - required
      properties:
        label:
          type: string
        name:
          type: string
        options:
          type:
            - array
            - 'null'
          items:
            $ref: '#/components/schemas/TravelRuleFieldOption'
        required:
          type: boolean
    RequiredActionStatus:
      type: string
      enum:
        - required
        - submitted
    TravelRuleFieldOption:
      type: object
      required:
        - value
        - label
      properties:
        label:
          type: string
        value:
          $ref: '#/components/schemas/TravelRuleDepositPurpose'
    TravelRuleDepositPurpose:
      type: string
      enum:
        - personal_transfer
        - business_payment
        - goods_or_services
        - investment_or_savings
        - other
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API credential. Withdrawal quote and submit operations additionally
        require the documented Ed25519 timestamp, nonce, and signature headers.
      x-default: sb_test_your_key

````