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

# Get Transaction Travel Rule Data

> (Beta) Get fulfilled travel rule data for a transaction.



## OpenAPI

````yaml get /v1/portfolios/{portfolio_id}/transactions/{transaction_id}/travel_rule
openapi: 3.0.1
info:
  title: REST API
  description: >-
    The Coinbase Prime REST API provides programmatic access to trading,
    custody, staking, market data, and account management functionality.
  version: '0.1'
servers:
  - url: https://api.prime.coinbase.com/
security: []
tags:
  - name: PrimeRESTAPI
paths:
  /v1/portfolios/{portfolio_id}/transactions/{transaction_id}/travel_rule:
    get:
      tags:
        - Travel Rule
      summary: Get Transaction Travel Rule Data
      description: (Beta) Get fulfilled travel rule data for a transaction.
      operationId: PrimeRESTAPI_GetTransactionTravelRuleData
      parameters:
        - name: portfolio_id
          in: path
          description: The portfolio ID that owns the transaction
          required: true
          schema:
            type: string
        - name: transaction_id
          in: path
          description: The transaction ID to look up travel rule data for
          required: true
          schema:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/coinbase.public_rest_api.GetTransactionTravelRuleDataResponse
components:
  schemas:
    coinbase.public_rest_api.GetTransactionTravelRuleDataResponse:
      title: Response containing fulfilled travel rule data for a transaction
      required:
        - fulfilled
      type: object
      properties:
        fulfilled:
          title: Whether data requirements are fulfilled
          type: boolean
        is_self:
          title: Whether the transfer is to/from a self-owned wallet
          type: boolean
        originator:
          $ref: '#/components/schemas/coinbase.public_rest_api.TravelRuleParty'
        beneficiary:
          $ref: '#/components/schemas/coinbase.public_rest_api.TravelRuleParty'
        amount:
          title: The crypto amount of the transaction (e.g. "1.23 BTC")
          type: string
        amount_currency:
          title: The currency of the crypto amount
          type: string
        fiat_amount:
          title: The fiat amount of the transaction (e.g. "123.45 USD")
          type: string
        fiat_amount_currency:
          title: The currency of the fiat amount
          type: string
        blockchain_network:
          title: The blockchain network for the transaction
          type: string
    coinbase.public_rest_api.TravelRuleParty:
      type: object
      properties:
        name:
          title: Legal name (for entities or simple name format)
          type: string
        natural_person_name:
          $ref: '#/components/schemas/coinbase.public_rest_api.NaturalPersonName'
        address:
          $ref: '#/components/schemas/coinbase.public_rest_api.DetailedAddress'
        wallet_type:
          $ref: '#/components/schemas/coinbase.public_rest_api.TravelRuleWalletType'
        vasp_id:
          title: VASP identifier when wallet_type is VASP
          type: string
        vasp_name:
          title: VASP name fallback when vasp_id is unknown
          type: string
        personal_id:
          type: string
          description: |-
            Personal identifier for travel rule compliance.
            For individuals: passport number, national ID, driver's license.
            For institutions: LEI (Legal Entity Identifier).
        date_of_birth:
          $ref: '#/components/schemas/google.type.Date'
        telephone_number:
          type: string
          description: Telephone number for contact purposes.
        account_id:
          type: string
          description: |-
            Account identifier for travel rule compliance.
            If not provided, defaults to portfolio ID.
      description: >-
        Represents a party in a travel rule transfer (originator or
        beneficiary).
    coinbase.public_rest_api.NaturalPersonName:
      title: Natural person name components
      type: object
      properties:
        first_name:
          title: Given/first name
          type: string
        middle_name:
          title: optional middle name (currently unused)
          type: string
        last_name:
          title: Family/last name
          type: string
    coinbase.public_rest_api.DetailedAddress:
      title: Detailed address information
      type: object
      properties:
        address_1:
          title: Primary address line
          type: string
        address_2:
          title: Secondary address line (optional)
          type: string
        address_3:
          title: Tertiary address line (optional)
          type: string
        city:
          title: City name
          type: string
        state:
          title: State or province
          type: string
        country_code:
          title: ISO 3166-1 alpha-2 country code
          type: string
        postal_code:
          title: Postal/ZIP code
          type: string
    coinbase.public_rest_api.TravelRuleWalletType:
      title: Type of wallet being used for transfers
      type: string
      description: |-
        - TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED: Default unspecified wallet type
         - TRAVEL_RULE_WALLET_TYPE_VASP: Centralized exchange wallet
         - TRAVEL_RULE_WALLET_TYPE_SELF_CUSTODIED: Self-hosted/custodial wallet
      default: TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED
      enum:
        - TRAVEL_RULE_WALLET_TYPE_UNSPECIFIED
        - TRAVEL_RULE_WALLET_TYPE_VASP
        - TRAVEL_RULE_WALLET_TYPE_SELF_CUSTODIED
    google.type.Date:
      title: >-
        Represents a whole or partial calendar date, such as a birthday. The
        time of

        day and time zone are either specified elsewhere or are insignificant.
        The

        date is relative to the Gregorian Calendar. This can represent one of
        the

        following:
      type: object
      properties:
        year:
          type: integer
          description: >-
            Year of the date. Must be from 1 to 9999, or 0 to specify a date
            without

            a year.
          format: int32
        month:
          type: integer
          description: >-
            Month of a year. Must be from 1 to 12, or 0 to specify a year
            without a

            month and day.
          format: int32
        day:
          type: integer
          description: >-
            Day of a month. Must be from 1 to 31 and valid for the year and
            month, or 0

            to specify a year by itself or a year and month where the day isn't

            significant.
          format: int32
      description: >-
        * A full date, with non-zero year, month, and day values.

        * A month and day, with a zero year (for example, an anniversary).

        * A year on its own, with a zero month and a zero day.

        * A year and month, with a zero day (for example, a credit card
        expiration
          date).

        Related types:


        * [google.type.TimeOfDay][google.type.TimeOfDay]

        * [google.type.DateTime][google.type.DateTime]

        * [google.protobuf.Timestamp][google.protobuf.Timestamp]

````