Request Body
The currency code for the new wallet (e.g.
COP, PEN, ARS, CLP).curl -X POST 'https://api.yativo.com/api/v1/wallet/create' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: unique-key-here' \
-d '{ "currency": "COP" }'
{
"status": "success",
"status_code": 201,
"message": "Wallet created successfully",
"data": {
"currency": "COP",
"balance": "0.00",
"created_at": "2026-04-01T10:00:00Z"
}
}
Create a new currency wallet for your account
POST /wallet/create
COP, PEN, ARS, CLP).curl -X POST 'https://api.yativo.com/api/v1/wallet/create' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: unique-key-here' \
-d '{ "currency": "COP" }'
{
"status": "success",
"status_code": 201,
"message": "Wallet created successfully",
"data": {
"currency": "COP",
"balance": "0.00",
"created_at": "2026-04-01T10:00:00Z"
}
}