Skip to main content

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.

Prerequisites

  • A client ID and client secret provided during onboarding.
  • curl or any HTTP client.

Steps

1

Get an access token

Follow the Authentication guide to exchange your client credentials for a JWT. Copy the access_token from the response.
2

Make your first request

List accounts in the sandbox:
curl --request GET \
  --url https://api.sandbox.tracefinance.com/api/accounts \
  --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
3

Check the response

You should see a paginated response:
{
  "data": [],
  "meta": {
    "previousCursor": null,
    "nextCursor": null,
    "total": 0
  }
}
An empty data array is expected — you haven’t created any accounts yet. You’re connected and authenticated.

What’s next