Skip to main content
GET
/
api
/
operations
List operations
curl --request GET \
  --url https://api.sandbox.tracefinance.com/api/operations \
  --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "account": { "id": "a1b2c3d4-5e6f-7890-abcd-ef1234567890", "owner": "Acme Importação Ltda" }, "sourceAmount": { "value": "500.00", "asset": "BRL", "decimals": 2 }, "targetAmount": { "value": "500.00", "asset": "BRL", "decimals": 2 }, "intent": { "type": "WITHDRAWAL", "beneficiary": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "holder": { "type": "INDIVIDUAL", "firstName": "<string>", "lastName": "<string>", "taxId": { "value": "52998224725", "type": "CPF" }, "dateOfBirth": "2023-12-25", "address": { "addressLine1": "<string>", "addressLine2": "<string>", "city": "<string>", "state": "<string>", "country": "BR", "postalCode": "<string>" } }, "paymentInstruction": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "rail": "PIX_KEY", "keyType": "CPF", "key": "<string>" } } }, "quote": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "effectiveRate": { "value": "5.25", "base": "USD", "quote": "BRL" }, "expiresAt": "2023-11-07T05:31:56Z", "consumedAt": "2023-11-07T05:31:56Z" }, "fees": [ { "amount": { "value": "500.00", "asset": "BRL", "decimals": 2 }, "source": "FX_SPREAD", "createdAt": "2023-11-07T05:31:56Z" } ], "transactions": [ { "id": "<string>", "direction": "CREDIT", "amount": { "value": "500.00", "asset": "BRL", "decimals": 2 }, "status": "PROCESSING" } ], "currentState": { "status": "REQUESTED", "createdAt": "2023-11-07T05:31:56Z", "reason": { "code": "INSUFFICIENT_BALANCE", "message": "Insufficient balance for the requested operation", "details": {} } }, "states": [ { "status": "REQUESTED", "createdAt": "2023-11-07T05:31:56Z", "reason": { "code": "INSUFFICIENT_BALANCE", "message": "Insufficient balance for the requested operation", "details": {} } } ], "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "tags": [ { "key": "psp", "value": "Amazon" }, { "key": "compliance-tier", "value": "high" } ] } ], "meta": { "previousCursor": "<string>", "nextCursor": "<string>", "total": 123 } }

Documentation Index

Fetch the complete documentation index at: https://tracefinance-docs-withdrawal-beneficiary-events.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT bearer token. Include as Authorization: Bearer <token>. See the Authentication guide for how to obtain one.

Headers

X-Trace-Version
string

API version. Omit to use the default version.

Example:

"1"

Query Parameters

limit
integer
default:10

Maximum number of items to return. Defaults to 10.

Required range: 1 <= x <= 100
cursor
string

Opaque cursor for fetching the next or previous page.

direction
enum<string>

Direction of pagination relative to the cursor.

Available options:
NEXT,
PREVIOUS
sortOrder
enum<string>
default:DESCENDING

Sort order for results. Defaults to DESCENDING.

Available options:
ASCENDING,
DESCENDING
filters
string

Filter expression using LHS Brackets syntax (field[operator]=value). Combine multiple conditions with and(...), or(...), or ; (implicit AND). See the Filtering guide for the full operator catalog.

Response

Paginated list of operations.

data
object[]
required
meta
object
required

Cursor-based pagination metadata.