OUTCOME · Inspect
What changes
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
v2Transfer compliance
/api/v2/transfer-compliance/transfers/{transfer_uuid}PURPOSE + BUSINESS CONTEXT
WHEN THIS CALL IS USEFUL
Call this when a transfer originator, beneficiary integration, VASP, compliance reviewer, or disclosure agent needs to inspect one specific transfer before presenting it or making a dependent decision so it can satisfy the minimum applicable counterparty, credential, wallet-control, preparation, decision, and disclosure requirements for one transfer lifecycle.
OUTCOME · Inspect
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
WHY IT MATTERS
ISOLATION + AUTHORITY
Owner, workspace, counterparty, VASP, credential issuer, wallet controller, transfer, reviewer, disclosure recipient, purpose, and retention boundaries remain distinct. A credential, preparation, decision, manifest, envelope, disclosure, or Explorer record neither moves value nor substitutes for wallet authorization, sanctions policy, rail admission, settlement, or finality.
BEFORE YOU CALL
WHAT TO DO NEXT
AGENT GUIDANCE
The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.
Open the authoritative production contract ↗EXTENDED INTEGRATION GUIDANCE
Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.
PARAMETERS
AuthorizationheaderRequiredBearer tokenCredential containing the compliance:read scope.EXAMPLEBearer hc_live_…
transfer_uuidpathRequired32-character identifierStable caller-owned transfer intent identifier returned by the collection route.EXAMPLE61d9d2f6d6ab4be6b1d11d6193236f71
RESPONSES
{
"transfer_id": "61d9d2f6d6ab4be6b1d11d6193236f71",
"direction": "OUTBOUND",
"asset": "USDC",
"network": "hybrid-testnet",
"amount": "12500.00",
"counterparty_id": "9fe24832bc314df791943cb47d959bb7",
"origin_jurisdiction": "US",
"destination_jurisdiction": "GB",
"state": "REVIEW",
"policy": {
"schema": "hybrid-transfer-policy-v1",
"version": "2026-09-01",
"required_claims": [
"originator.name",
"originator.account",
"beneficiary.name"
]
},
"policy_commitment": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
"current_event_hash": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
"expires_at": "2026-09-02T18:00:00Z",
"created_at": "2026-09-01T17:40:00Z",
"updated_at": "2026-09-01T17:45:00Z",
"proof_state": "INTACT",
"participants": [
{
"participant_id": "participant-originator",
"role": "ORIGINATOR",
"counterparty_id": "9fe24832bc314df791943cb47d959bb7",
"credential_id": "credential-originator",
"disclosure_manifest_commitment": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
"wallet_proof_commitment": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
"status": "READY",
"created_at": "2026-09-01T17:40:00Z",
"updated_at": "2026-09-01T17:44:00Z"
}
],
"events": [
{
"event_id": "event-review",
"sequence": 4,
"event_type": "REVIEW_REQUESTED",
"from_state": "SCREENING",
"to_state": "REVIEW",
"evidence_commitments": {
"screening_commitment": "sha256:5555555555555555555555555555555555555555555555555555555555555555",
"policy_commitment": "sha256:1111111111111111111111111111111111111111111111111111111111111111"
},
"value_moved": false,
"previous_event_hash": "sha256:6666666666666666666666666666666666666666666666666666666666666666",
"event_hash": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
"signature_algorithm": "Ed25519",
"signature_key_id": "transfer-evidence-2026-09",
"signature": "base64url-signature",
"created_at": "2026-09-01T17:45:00Z"
}
],
"policy_decisions": [
{
"decision_id": "decision-screening",
"decision": "REVIEW_REQUIRED",
"risk_level": "MEDIUM",
"reason_codes": [
"COUNTERPARTY_REVIEW"
],
"input_commitment": "sha256:7777777777777777777777777777777777777777777777777777777777777777",
"screening_commitment": "sha256:5555555555555555555555555555555555555555555555555555555555555555",
"decision_commitment": "sha256:8888888888888888888888888888888888888888888888888888888888888888",
"signature_algorithm": "Ed25519",
"signature_key_id": "compliance-policy-2026-09",
"signature": "base64url-signature",
"created_at": "2026-09-01T17:44:30Z"
}
],
"reviews": [],
"message_evidence": [
{
"message_id": "message-disclosure",
"direction": "OUTBOUND",
"message_type": "TRAVEL_RULE_DISCLOSURE",
"protocol": "HYBRID_TRANSFER_V1",
"payload_schema": "IVMS101_2023",
"payload_commitment": "sha256:9999999999999999999999999999999999999999999999999999999999999999",
"envelope_commitment": "sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"delivery_status": "QUEUED",
"attempt_count": 0,
"created_at": "2026-09-01T17:44:40Z",
"updated_at": "2026-09-01T17:44:40Z"
}
]
}{
"code": "transfer_not_found",
"message": "The transfer does not exist or is not visible to the authenticated owner."
}transfer_not_found{
"code": "invalid_credentials",
"message": "The bearer credential is missing, expired, or invalid."
}invalid_credentials{
"code": "insufficient_scope",
"message": "The credential lacks explicitly provisioned compliance:read authority."
}insufficient_scope{
"code": "transfer_compliance_unavailable",
"message": "The authoritative Core or Identity compliance projection is unavailable."
}transfer_compliance_unavailableOPERATIONAL NOTES
This route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.
Verify the exact production OpenAPI operation ↗Return to the V2 directory ↗