1. Online Payments
  • API Docs Colombia 🇨🇴
  • Online Payments
    • Release Notes
    • Card Payments
      • Request a card token
      • Make a charge or deferred charge
      • Create payment (tokenless)
      • Void a transaction
      • Refund a transaction
      • Request deferred options
      • Authorize payments
      • Preauthorization (tokenless)
      • Reauthorize payments
      • Capture an authorized payment
      • Verify Account
      • Validate OTP
      • Bin Info
      • BIN info V2
    • One-Click & Scheduled Payments
      • Request a recurring charge token
      • Create a recurring charge
      • Make an One-click payment
      • Update recurring charge card data
      • Cancel a recurring charge
      • Update a recurring charge
      • Add a temporary charge or discount
      • Authorize payments
      • Capture an authorized payment
      • Get recurring charge Info
    • Chargebacks
      • Query chargebacks
      • Request chargeback export
    • Transfer in
      • Get Bank List
      • Request a Transfer In token
      • Init Transaction
      • Get Status
    • Transfer out
      • Get Bank List
      • Get Bank List V2
      • Request a Transfer Out token
      • Init Transaction
      • Get Status
      • Balance for Payouts
    • CASH-IN
      • Request a cash in token
      • Init Transaction
      • Transaction Status
      • Delete a cash in transaction
      • Update a cash in transaction
    • Cash-out
      • Request a cash out token
      • Init Transaction
      • Transaction Status
      • Update a cash out transaction
      • Delete a cash out transaction
    • Smartlinks-v2
      • Create a Smartlink
      • Get a Smartlink
      • Update a Smartlink
      • Delete a smartlink
    • Analytics
      • Get transactions list v1
      • Get transactions list v2
    • Gateway-status
      • Get gateway status
      • Get platform status
    • Payment Credentials
      • Create a credential
      • Search credentials
      • Advanced search
      • Delete credential
      • Regenerate a credential
      • Activate or deactivate
      • Update credential
    • Payment Button
      • Create a payment button
    • Settlement
      • Query settlement
    • Subscription Transactions
      • Get subscription transactions
  • Kushki One
    • Cloud Services
      • Payment
        • Charge
        • Authorization (Pre-auth)
        • Capture
        • Re-authorization
        • Post-tip
        • Void
        • Refund
        • Abort
        • Transaction Search
      • Print
        • Create Print Job
        • Get Print Job Status
    • Local Services
      • Payment
        • Charge
        • Authorization (Pre-auth)
        • Capture
        • Re-authorization
        • Post-tip
        • Void
        • Refund
        • Abort
        • Transaction Search — Online
        • Transaction Search — Local
      • Print
        • Create Print Job
        • Get Print Job Status
        • Print Job Webhook (inbound — implemented by your POS)
  • API RAW CARD PRESENT PAYMENTS
    • Release Notes
    • Error Catalog
    • The Amount Object
    • Key Exchange Process
    • Test data
    • Card Information
      • Get BIN Info
      • Balance inquiries
      • BIN info V2
      • Request deferred options
    • One-time Payments
      • Single payment
    • Two-step Payments
      • Authorization and capture
    • Voids & Refunds
      • Void & Reverse
      • Refund a transaction
    • Query Transactions
      • Transaction Search
    • Webhooks
      • Introduction
      • Good Practices
      • Webhooks-Card Payments
      • Webhooks-Refunds
      • Check your webhooks
  • Appian - Submerchant Register
    • Submerchant Validation in Batch
    • Query submerchant status by requestId/submerchantId
    • Get submerchantIds
    • Get credentials for submerchants
  • Schemas
    • RequestBodies
      • one-and-two-step-payment
    • SubscriptionTransactionsResponse
    • Card
    • Channel
    • Amount-cash-in
    • ChargebackListResponse
    • SettlementDateRangeRequest
    • AmountWithTaxes
    • PrintJobRequest
    • card
    • SubscriptionTransaction
    • networkToken
    • ChargebackItem
    • SettlementTicketRequest
    • AmountCore
    • CommandText
    • amount
    • ErrorResponse
    • currency
    • webhooksItem
    • ErrorResponse400
    • SettlementResponse
    • ExtraTaxes
    • CommandColumns
    • extra_taxes
    • Amount
    • ErrorResponse401
    • SettlementRecord
    • ColumnItem
    • pos_details
    • extraTaxes
    • ErrorResponse403
    • TransactionResponse
    • CommandDivider
    • card_details
    • Deferred
    • Country
    • payment_method
    • ErrorResponse500
    • RawResponse
    • CommandFeed
    • enc_tlv
    • Metadata
    • CardData
    • CommandSpace
    • contact_details
    • ContactDetails
    • AmountWithTip
    • CommandCut
    • deferred
    • sub_merchant
    • documentType
    • Subscription
    • LinkFailure
    • CommandImage
    • metadata
    • orderDetails
    • Language
    • TransactionSearchRequest
    • CommandQR
    • Shipping Address
    • payment_submethod
    • CommandBarcode
    • Billing-Address
    • PrinterError
    • product
    • SubscriptionUpdate
    • PrintJobStatus
    • threeDomainSecure
    • SubscriptionAdjustmentRequest
    • PrintWebhookPayload
    • webhooks
    • headers
    • webhooksChargeback
    • citMit
    • network
    • binInfo
    • messageFields
    • UnexpectedErrorResponse
    • transactionType
    • ExternalReferenceId
    • ExternalSubscriptionId
BienvenidaPerú 🇵🇪México 🇲🇽Ecuador 🇪🇨Colombia 🇨🇴
Chile 🇨🇱
BienvenidaPerú 🇵🇪México 🇲🇽Ecuador 🇪🇨Colombia 🇨🇴
Chile 🇨🇱
  1. Online Payments

SETTLEMENT

The Settlement API lets you retrieve settlement records in JSON format, replacing the need to wait for a daily CSV file delivery. Use it to reconcile transactions, audit fees, and build automated reporting pipelines.

Query Settlement#

POST /merchant-settlement/v1/settlement
The endpoint supports two mutually exclusive query modes — choose one per request.

Mode 1 — Query by date range#

Send startDate and endDate to retrieve all settlement records for the specified period. Results are paginated.
FieldRequiredDescription
startDate✅Start of the settlement period, in YYYY-MM-DD format
endDate✅End of the settlement period, in YYYY-MM-DD format
pagePage number to retrieve. Default: 1
limitRecords per page. Default: 100
Example:
{
  "startDate": "2026-01-01",
  "endDate": "2026-01-31",
  "page": 1,
  "limit": 50
}

Mode 2 — Query by ticket number#

Send a single ticketNumber to retrieve the settlement record for a specific transaction. Returns exactly one record in the data array. Also include the switch query parameter.
FieldRequiredDescription
ticketNumber✅Ticket number returned by Kushki at charge or capture time
Query parameter:
ParameterValueDescription
switchecommercePayment channel scope — use ecommerce for online transactions
Example:
POST /merchant-settlement/v1/settlement?switch=ecommerce
{
  "ticketNumber": "821775714399469939"
}

Response#

The response contains a data array of settlement records and a pagination object.

pagination fields#

FieldDescription
pageCurrent page number
limitMax records per page
totalTotal records available for the queried period
totalPagesTotal pages based on the current limit

Settlement record fields#

Transaction identifiers
FieldDescription
ticket_numberUnique Kushki ticket number for this transaction
sale_ticket_numberTicket of the original sale. Populated for voids and refunds; empty for sales
buy_orderMerchant-provided order reference
recapReconciliation code for the transaction
document_numberDocument number associated with the transaction, if applicable
approval_codeAuthorization code returned by the issuer
Transaction details
FieldDescription
createdDate the transaction was created (YYYY-MM-DD)
payment_dateDate the settlement payment was made to the merchant (YYYY-MM-DD)
day / monthDay and month extracted from the transaction creation date
transaction_typeSALE, VOID, REFUND, PREAUTHORIZATION, or CAPTURE
transaction_statusAPPROVED, DECLINED, VOIDED, or REFUNDED
payment_methodPayment method used (e.g., CARD)
number_of_monthsDeferred months applied. "0" for non-deferred transactions
metadataCustom metadata attached at charge time, if any
observationAdditional notes on the record, if any
Merchant and credential info
FieldDescription
merchant_idUnique identifier of your merchant account
merchant_nameDisplay name of your merchant account
credential_aliasAlias of the credential used for the transaction
processor_typeProcessing model (e.g., AGGREGATOR_FORMAL, ACQUIRER)
countryCountry where the transaction was processed
currency_codeAlways COP for Colombia
Card details
FieldDescription
bin_cardFirst 6 digits of the card (BIN)
card_brandCard network (e.g., VISA, MASTERCARD)
card_typeCREDIT, DEBIT, or PREPAID
foreign_card"TRUE" if the card was issued outside Colombia
issuing_bankName of the card-issuing bank
Cash transaction fields
FieldDescription
cash_pinCash PIN for the transaction, if applicable
payment_pointCash payment point identifier, if applicable
Amount breakdown
FieldDescription
approved_transaction_amountTotal amount approved for the transaction
subtotal_ivaSubtotal subject to VAT
subtotal_iva0Subtotal not subject to VAT
iva_valueVAT amount applied to the transaction
ice_valueICE tax amount (Impuesto a Consumos Especiales)
Fee breakdown
FieldDescription
variable_feeVariable fee amount charged by Kushki
variable_percentageVariable fee rate applied, as a percentage
static_amountFixed fee charged per transaction
min_fee_amountMinimum fee amount applied
kushki_commissionTotal Kushki commission (variable_fee + static_amount)
iva_kushki_commissionVAT on the Kushki commission
kushki_amountTotal retained by Kushki (kushki_commission + iva_kushki_commission)
commission_msiCommission for months-without-interest deferred payments
iva_msiVAT on the MSI commission
fraud_retentionAmount retained for fraud prevention
adjustmentManual adjustment applied to the record
walletAmount associated with wallet operations, if applicable
fund_releaseAmount released from a previously held fund
pay_amountNet amount paid to the merchant — approved_transaction_amount minus all fees and retentions

Example Response#

{
  "data": [
    {
      "payment_date": "2026-03-10",
      "created": "2026-03-08",
      "country": "Colombia",
      "currency_code": "COP",
      "merchant_name": "Mi Comercio Colombia",
      "transaction_status": "APPROVED",
      "ticket_number": "821773035999295672",
      "transaction_type": "SALE",
      "payment_method": "CARD",
      "card_brand": "VISA",
      "card_type": "DEBIT",
      "approval_code": "000314",
      "approved_transaction_amount": "105000.00",
      "subtotal_iva": "0.0",
      "subtotal_iva0": "105000.00",
      "iva_value": "0.0",
      "variable_fee": "2993.85",
      "variable_percentage": "2.85309",
      "kushki_commission": "2993.85",
      "iva_kushki_commission": "569.83",
      "kushki_amount": "3563.68",
      "fraud_retention": "0.00",
      "adjustment": "0.00",
      "pay_amount": "101436.32"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 50,
    "total": 1245,
    "totalPages": 25
  }
}

Authentication#

⚠️ Keep this credential secure. Never expose your private-merchant-id in client-side or frontend code.

Using the API#

🟢 Production
🧪 Sandbox (UAT)
https://api.kushkipagos.com/

Available Endpoints#

Query Settlement
Retrieves merchant settlement records by date range or by ticket number. Returns the full fee breakdown and net payout amount per transaction.

Got a suggestion on this documentation? Contact us.
Modified at 2026-07-11 00:04:34
Previous
Create a payment button
Next
Query settlement
Built with