Account, and sent your first Transfer.
Step 1: Get your test API keys
In the Dashboard, go to Developers β API Keys. Youβll see keys fortest (sk_test_...) and live (sk_live_...) modes. Copy the test secret key.
Step 2: Register JWS keys
Money-moving endpoints require signed requests. These endpoints create transfers, return transfers, or verify a standardized Mexican bank account number. Follow Generate JWS keys to create a key pair and upload the public key. Return to this page when youβre done.Step 3: List your accounts
Every organization starts with a rootAccount. Fetch it with a GET request to /v2/accounts:
cURL
JSON
Use an SDK
If youβre using Node or Python, install the Node SDK or Python SDK to call the API. The SDK signs each request with JWS and handles pagination. Install an SDK:id (acc_...) and root_account_number_id (acno_...) from the response. Use root_account_number_id to fund the test Account. Use id to create the outbound Transfer.
Step 4: Fund your test account
Your test Account starts empty. Simulate an inbound transfer so you have money to send:cURL
Transfer that funds your Account:
JSON
Step 5: Send your first transfer
Create an outboundTransfer from the test Account you funded.
cURL
Transfer you created:
JSON
Step 6: Create a webhook endpoint
Webhooks notify your server when a transfer settles, so you donβt need to poll for status. Go to Developers β Webhooks in the Dashboard. Add your URL, then subscribe totransfer.inbound.succeeded and transfer.outbound.succeeded.
Test the integration
Confirm the full flow worked end to end:- After Step 4, list your accounts again and confirm
available_balanceincreased by59013. - Confirm the Step 5 transfer returns
"status": "succeeded". - After Step 6, repeat Steps 4 and 5. Confirm your endpoint receives a
transfer.outbound.succeededwebhook for the new outbound transfer.