Travel Rule

Compliant transfers with travel rule data.


Overview

Transfers above regulatory thresholds require travel rule data: identifying information about the originator and beneficiary. The compliance platform enforces this via the on-chain TravelRuleRegistry contract and the compliance middleware API.

JurisdictionThresholdRule
USA$3,000 USDTransfers below $3,000 do not require travel rule data
EU€0All transfers require travel rule data regardless of amount

The applicable threshold is determined by the originator’s jurisdiction. When in doubt, include travel rule data — it never hurts to provide it.

Initiate a Compliant Transfer

Request
curl -X POST https://api.overvoid.io/v1/compliance/transfer/initiate \
-H "Authorization: Bearer cusd_test_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"chain_id": 11155111,
"from_address": "0xSENDER...",
"to_address": "0xRECIPIENT...",
"amount_wei": "5000000000000000000000",
"originator": {
"entity_id": "ent_01HXYZ...",
"legal_name": "Acme Corp",
"account_number": "ACME-001"
},
"beneficiary": {
"entity_id": "ent_01HABC...",
"legal_name": "GlobEx Corp",
"account_number": "GLOB-001"
}
}'
Response
{
"transfer_id": "tr_01HXYZ...",
"status": "pending_compliance",
"travel_rule_required": true,
"travel_rule_hash": "0xabc123...",
"created_at": "2026-03-06T12:00:00Z"
}

How It Works

  1. API validates both parties — Both originator and beneficiary must have active compliance status. The API checks KYB, AML, and sanctions for both.
  2. Travel rule data is hashed — The originator and beneficiary information is hashed and stored. The hash is written to the on-chain TravelRule contract.
  3. Transfer is authorized — Once compliance checks pass and the travel rule hash is recorded, the transfer can proceed on-chain.
  4. On-chain enforcement — Token contracts integrating the ComplianceOracle call the TravelRuleRegistry during transfer. If no valid travel rule record exists for transfers above the threshold, the transaction reverts.

Poll Transfer Status

curl https://api.overvoid.io/v1/compliance/transfer/tr_01HXYZ \
-H "Authorization: Bearer cusd_test_YOUR_KEY"
StatusDescription
pending_complianceCompliance checks running
approvedTravel rule recorded, transfer can proceed
rejectedCompliance check failed (sanctions, frozen, etc.)

Below-Threshold Transfers

USA: For transfers under $3,000, you can transfer directly on-chain without calling the compliance transfer API. The token contract still verifies both sender and receiver have valid compliance status in the oracle, but travel rule data is not required.

EU (MiCA): There is no below-threshold exemption. All transfers require travel rule data. Always call the compliance transfer API for EU-originated transfers.

Webhook Events

  • transfer.detected — On-chain transfer indexed
  • transfer.confirmed — Transfer finalized with sufficient confirmations