Ir al contenido

Listar pagos a tu cuenta

Lista las transferencias del saldo de KUTI hacia tu cuenta bancaria (payouts).

GEThttps://api.kuti.pe/v1/payouts
status: PENDING, IN_TRANSIT, PAID, FAILED, CANCELED. Del más reciente al más antiguo.

Query

status
stringopcional
PENDING | IN_TRANSIT | PAID | FAILED | CANCELED.
page
integeropcional
Página (1-based).Ej: 1
per_page
integer | allopcional
Elementos por página (1–100) o all.Ej: 25

Language

Credentials

Header

Authorization

Secret key de developer · ejemplos con librerías estándar (aún sin SDK)

cURL Request
curl -s 'https://api.kuti.pe/v1/payouts?page=1&per_page=25&status=PAID' \
  -H 'Authorization: Bearer kuti_live_…'
Librería estándar · sin SDK propio
Response

Elige un ejemplo de respuesta:

application/json
200OK
{
  "success": true,
  "data": [
    {
      "id": "pyt_01J8Z3K4M5N6P7Q8R9S0T1U2V3",
      "source": "PROVIDER",
      "amount": {
        "amount": "1250.50",
        "currency": "PEN"
      },
      "gross_amount": {
        "amount": "1280.00",
        "currency": "PEN"
      },
      "fee_amount": {
        "amount": "-29.50",
        "currency": "PEN"
      },
      "destination_bank": "BCP",
      "destination_account_masked": "••••••••9012",
      "status": "PAID",
      "payout_account_id": "pacc_01J8Z3K4M5N6P7Q8R9S0T1U2V3",
      "arrival_expected_on": "2026-09-05",
      "initiated_at": "2026-09-04T18:00:00Z",
      "paid_at": "2026-09-05T10:15:00Z",
      "created_at": "2026-09-04T18:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 25,
    "total": 1,
    "total_pages": 1,
    "has_more": false
  }
}