curl -X POST 'https://crypto-api.yativo.com/api/accounts/create-account' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_name": "Main Treasury",
"account_type": "business"
}'
{
"status": "success",
"message": "Account created successfully",
"data": {
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"account_name": "Main Treasury",
"account_type": "business",
"created_at": "2026-03-26T12:00:00Z"
}
}
Create a new account to organize wallets and assets
curl -X POST 'https://crypto-api.yativo.com/api/accounts/create-account' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_name": "Main Treasury",
"account_type": "business"
}'
{
"status": "success",
"message": "Account created successfully",
"data": {
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"account_name": "Main Treasury",
"account_type": "business",
"created_at": "2026-03-26T12:00:00Z"
}
}
Bearer YOUR_ACCESS_TOKENpersonal, business, customer.curl -X POST 'https://crypto-api.yativo.com/api/accounts/create-account' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_name": "Main Treasury",
"account_type": "business"
}'
{
"status": "success",
"message": "Account created successfully",
"data": {
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"account_name": "Main Treasury",
"account_type": "business",
"created_at": "2026-03-26T12:00:00Z"
}
}