GET
/core/accounts/v1Listar Cuentas
El endpoint
/core/accounts/v1 devuelve un listado paginado de las cuentas digitales con sus balances y otra información relevante.Parámetros disponibles
Header Parameters
AuthorizationStringrequired
Query Parameters
page[number]Integer
page[size]Integer
filter[country]enumrequired
filter[status]Array
filter[owner_type]Array
filter[user_id]String
filter[company_id]String
filter[created_from]String
filter[created_until]String
sortString
Detalle de respuestas
Ejemplo de código
curl -X GET "https://api.pomelo.la/core/accounts/v1?page[number]=1&page[size]=1&filter[country]=ARG&filter[status]=[]&filter[owner_type]=[]&filter[user_id]=example_value&filter[company_id]=example_value&filter[created_from]=2026-02-07T01:52:11.129Z&filter[created_until]=2026-02-07T01:52:11.129Z&sort=example_value" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Ejemplo de respuesta (200)Lista de cuentas
{
"meta": {
"pagination": {
"current_page": 5,
"total_pages": 10,
"page_size": 3
}
},
"data": [
{
"id": "acc-20i4O5MIKHooZpOV8j5s7nxV5pl",
"country": "ARG",
"balance": "982345.12",
"data": {
"license_owner": "POMELO",
"bank_account": {
"cvu": "2222222222222222222222",
"alias": "cuenta.pomelo.ejemplo"
}
},
"owner_type": "USER",
"owner_data": {
"user_id": "usr-20i4czXIfc1NsXAvoPoPaWBAwye",
"client_id": "cli-20i4e72I0b0sFgN3KPewmnUGryi",
"company_id": "cmp-20i4czXIfc1NsXAvoPoPaWBAwye"
},
"status": "ACTIVE",
"currency": "ARS",
"status_update_motive": "OTHER",
"status_update_comment": "Comentario sobre el motivo de la actualización de la cuenta.",
"metadata": {
"extra_property_1": "My value"
},
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z",
"status_updated_by": "CLIENT"
}
]
}