Skip to main content
GET
/
api
/
beneficiaries
/
{beneficiaryId}
Get a beneficiary
curl --request GET \
  --url https://api.sandbox.tracefinance.com/api/beneficiaries/{beneficiaryId} \
  --header 'Authorization: Bearer <token>'
{ "id": "ben-a1b2c3d4-5e6f-7890-abcd-ef1234567890", "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "holder": { "type": "INDIVIDUAL", "firstName": "João", "lastName": "Silva", "taxId": { "value": "52998224725", "type": "CPF" }, "dateOfBirth": "1985-03-15", "address": { "addressLine1": "<string>", "addressLine2": "<string>", "city": "<string>", "state": "<string>", "country": "BR", "postalCode": "<string>" } }, "relationshipType": "SELF_OWNED", "paymentInstructions": [ { "id": "pi-a1b2c3d4-5e6f-7890-abcd-ef1234567890", "asset": "BRL", "currentState": { "status": "PENDING_REVIEW", "createdAt": "2023-11-07T05:31:56Z", "reason": { "code": "INSUFFICIENT_BALANCE", "message": "Insufficient balance for the requested operation", "details": {} } }, "address": { "rail": "PIX_KEY", "dictKeyType": "CPF", "dictKey": "john@example.com" }, "createdAt": "2026-04-14T10:30:00Z" } ], "createdAt": "2026-04-14T10:30:00Z", "updatedAt": "2026-04-14T10:30:00Z" }

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"

Path Parameters

beneficiaryId
string<uuid>
required

UUID of the beneficiary.

Response

Beneficiary details.

An external beneficiary registered for withdrawals.

id
string<uuid>
required
read-only
Example:

"ben-a1b2c3d4-5e6f-7890-abcd-ef1234567890"

customerId
string<uuid>
required

Customer that owns this beneficiary.

holder
Individual · object
required

The person or company that receives funds. Discriminated by type.

relationshipType
enum<string>
required

Whether the beneficiary is the customer themselves (SELF_OWNED) or a separate party (THIRD_PARTY).

Available options:
SELF_OWNED,
THIRD_PARTY
paymentInstructions
object[]
required
createdAt
string<date-time>
required
read-only
Example:

"2026-04-14T10:30:00Z"

updatedAt
string<date-time>
required
read-only
Example:

"2026-04-14T10:30:00Z"