Documentation Index
Fetch the complete documentation index at: https://tracefinance-docs-kyb-kyc-tighten-doc-list.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Withdrawals move funds out of an account to an external destination — a bank account (PIX, TED) or a crypto wallet. Every withdrawal references a quote that locks the FX rate (or a 1:1 spot for same-asset) and a previously approved beneficiary with at least one payment instruction.Prerequisites
- An active account with sufficient balance in the quote’s source asset.
- Valid authentication credentials.
Steps
Register a beneficiary (one time per destination)
Submit the holder details and the payment instruction (PIX, bank account, or crypto wallet). The beneficiary starts in The response returns the beneficiary with its
PENDING_REVIEW status and transitions asynchronously to APPROVED or REJECTED after compliance review.id and the created paymentInstruction.id. Wait until status is APPROVED before continuing — only approved instructions can be used in a withdrawal.Create a quote
Quotes lock the FX rate (or a 1:1 spot for same-asset) for a short window and are bound to one account. Provide either The response returns the quote
sourceAmount or targetAmount, never both.id, the locked effectiveRate, and expiresAt. The quote can be consumed by exactly one operation before it expires.Create the withdrawal
Reference the approved beneficiary, the chosen payment instruction on that beneficiary, and the quote.Returns
201 immediately with the operation in REQUESTED status. Settlement and rail dispatch happen asynchronously.Track the withdrawal
Subscribe to
OPERATION_COMPLETED and OPERATION_FAILED to receive the terminal outcome — both deliver the same payload as OPERATION_REQUESTED, with currentState.status set to the new status (and currentState.reason populated on failure). Intermediate statuses (PROCESSING, ON_HOLD, ACTION_REQUIRED) are not published as webhooks; poll GET /api/operations/{operationId} if you need to surface them in your UI.What happens next
- Make a deposit — fund an account before withdrawing.
- Execute a swap — convert between assets before sending out.