v1
latestOpenAPI 3.1.02026-07-241653251.3 MBDeposits
Submit Travel Rule information for a crypto deposit
Submits originator (sender) Travel Rule information for a crypto deposit held for compliance review. Forwards the collected data and optional wallet screenshot to the Travel Rule service, which decides whether the compliance hold is released. Returns the resulting submission status.
post/deposits/crypto/{deposit_id}/travel-rule
Path parameters
deposit_idstring required
The unique identifier of the crypto deposit
Headers
X-SCX-SIGNEDstring required
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
X-SCX-TIMESTAMPstring required
Example:1678901234
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Request body
Example request
{
"sender_type": "me_to_me",
"wallet_type": "self_custody",
"casp_did": "did:example:abc",
"submitted_source_address": "0xabc",
"sender_pii": {
"first_name": "Alice",
"last_name": "Doe",
"address": "123 Main St, Springfield"
},
"screenshot_mime_type": "image/png"
}Response
Successfully submitted Travel Rule information. Returns the resulting submission status.
Example response
{
"message": {
"status": "approved"
}
}