Credit Card Statement

Detailed documentation of the credit card statement data structure

Credit Card Statement with credit limits, billed amounts, and transaction details.

Document type code: cartola_tc

Response Structure

{
  "data": {
    "extractedData": {
      "titular": "Juan Pérez",
      "numero_tarjeta": "XXXX-XXXX-XXXX-1234",
      "fecha_estado_cuenta": "2023-12-01T00:00:00Z",
      "monto_total_facturado": 125000,
      "tipo_cartola": "nacional",
      "moneda": "CLP",
      "cupo_disponible": 1500000,
      "cupo_utilizado": 500000,
      "cupo_total": 2000000,
      "saldo_periodo_anterior": 75000,
      "transacciones": [
        {
          "fecha": "2023-11-15T00:00:00Z",
          "descripcion": "SUPERMERCADO XYZ",
          "monto_mensual": 45000,
          "compra_en_cuotas": true,
          "numero_cuota": 2,
          "total_cuotas": 6,
          "monto_total": 270000
        },
        {
          "fecha": "2023-11-20T00:00:00Z",
          "descripcion": "FARMACIA ABC",
          "monto_mensual": 15000,
          "compra_en_cuotas": false,
          "numero_cuota": null,
          "total_cuotas": null,
          "monto_total": null
        },
        {
          "fecha": "2023-11-25T00:00:00Z",
          "descripcion": "PAGO POR INTERNET",
          "monto_mensual": -75000,
          "compra_en_cuotas": false,
          "numero_cuota": null,
          "total_cuotas": null,
          "monto_total": null
        }
      ]
    }
  }
}

Main Fields

FieldTypeDescription
titularStringCardholder's name
numero_tarjetaStringMasked card number format
fecha_estado_cuentaString (date-time)Statement date
monto_total_facturadoNumberTotal billed amount
tipo_cartolaString (enum)Indicates if it is national or international
monedaString (enum)CLP for national statements, USD for international ones
cupo_disponibleNumberAvailable credit limit
cupo_utilizadoNumberUsed credit limit
cupo_totalNumberTotal credit limit
saldo_periodo_anteriorNumber (nullable)Previous period balance, may also appear as final owed balance from previous period, previous billed balance, etc. Note that in some statements the Previous Period Starting Owed Balance appears, but for you it's always important to find the Final one, which may be called Final Owed Balance from Previous Period
monto_total_facturado_periodo_anteriorNumberTotal billed amount from previous period

Transaction Fields

FieldTypeDescription
fechaString (date-time)Transaction date
descripcionStringTransaction description
monto_mensualNumberMonthly amount to pay for the transaction
compra_en_cuotasBooleanIndicates if it's an installment purchase
numero_cuotaNumber (nullable)Current installment number to pay in the month, only for installment purchases
total_cuotasNumber (nullable)Total number of installments, only for installment purchases
monto_totalNumber (nullable)Total transaction amount, only for installment purchases

Important considerations

  • The transaction list may include entries with names like PAID AMOUNT or INTERNET PAYMENT, which have negative amounts, but should also be included
  • National statements use CLP currency and international statements use USD
  • Installment transactions show the detail of each installment and the original total amount
  • Important to verify the statement date for the correct period
  • Credit card statement with complete information about limits and transactions

On this page