For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
    • API Basics
  • Products
    • Global Fiat Payouts
    • On-Ramps and Off-Ramps
  • Integration Guides
    • Global payouts integration guide
    • Country-specific details
  • API Reference
      • POSTCreate a Financial Account
      • POSTUpdate a Financial Account
LogoLogo
API ReferenceFinancial Accounts

Create a Financial Account

POST
https://api.latitude.xyz/v1/financial_accounts
POST
/v1/financial_accounts
$curl -X POST https://api.latitude.xyz/v1/financial_accounts \
> -H "Content-Type: application/json" \
> -d '{
> "individual_id": "ind_9f8b7c6d5e4a3b2c1d0e",
> "type": "pix",
> "details": {}
>}'
201Created
1{
2 "id": "fae12345-6789-4abc-def0-1234567890ab",
3 "type": "pix",
4 "details": {},
5 "created_at": "2024-01-15T09:30:00Z",
6 "updated_at": "2024-01-15T09:30:00Z"
7}
Creates a financial account for an existing individual
Was this page helpful?
Previous

Update a Financial Account

Next
Built with

Request

This endpoint expects an object.
individual_idstringRequired
The public ID of the individual to attach the financial account to
typeenumRequired

Type of financial account (e.g., bank_account, crypto_wallet)

detailsobjectRequired

Account-specific details required for the given type

Response

Create a Financial Account
idstring
Unique public identifier for the financial account
typeenum
Type of financial account
detailsobject

Account-specific details

created_atstringformat: "date-time"
ISO 8601 timestamp when the account was created
updated_atstringformat: "date-time"
ISO 8601 timestamp when the account was last updated