KuvarPay API
Home
Home
  1. Transactions
  • Overview
  • SDK Integration Guide
  • Webhooks Integration Guide
  • Subscriptions Guide
  • Transactions
    • Calculate Payment Amount
      POST
    • Create Transaction
      POST
    • Get Transactions Details
      GET
    • Get Transactions
      GET
    • Update Status
      PATCH
    • Get Transaction Status by Reference
      GET
    • Simulate payment for sandbox transactions
      POST
    • Get detailed payment status for a transaction
      GET
    • Manually trigger refund for excess payment
      POST
    • Get list of expired transactions
      GET
  • Checkout Sessions
    • Arm Checkout Session
      PATCH
    • Payment Status Webhook
      POST
    • Create Checkout Session
      POST
    • Cleanup Expired Sessions
      POST
    • Get Checkout Session
      GET
    • Update Checkout Session
      PATCH
  • Transfer Fees
    • /api/v1/optimal-transfer-fee
      GET
  • Sandbox Simulator
    • Force Simulator Scenario
      POST
    • Force Transaction Status
      POST
  • Invoices
    • Create a new invoice
      POST
    • Send invoice email to customer
      POST
  • Payment Links
    • Create a new payment link
  • Server-Sent Events (SSE)
    • Get Transaction Details
    • Get Session Details
  • Subscriptions
    • Create Plans
    • Get Plans
    • Get Plans Details
    • Update Plans Details
    • Create Prices
    • Get Prices
    • Update Prices Details
    • Create Checkout Sessions
    • Get Checkout Sessions Details
    • Confirm Subscription Checkout
    • Create Subscriptions
    • Get Subscriptions
    • Get Subscriptions Details
    • Update Subscriptions Details
    • Delete Subscriptions Details
    • Renew Subscription
    • Confirm Subscription Cancellation
    • Create Subscription Invoices
    • Upgrade Subscription
    • Get Subscription Invoices
    • Downgrade Subscription
    • Create Metered Invoices
    • Renew Subscription Authorization
    • Get Subscription Invoices Details
    • Get Charge Attempts
    • Create Authorizations
    • Revoke Relay Authorization
    • Get Relay Authorization Status
  • Currencies
    • Get Subscription Currencies
    • Get Supported Currencies
    • Get networks supported for subscription payments
    • Get Currencies
    • Get all supported networks
  • Schemas
    • ErrorResponse
    • CreateInvoiceRequest
    • CreatePaymentLinkRequest
    • InvoiceResponse
    • PaymentLinkResponse
    • CreateInvoiceResponse
    • CreatePaymentLinkResponse
    • SendInvoiceEmailRequest
    • SendInvoiceEmailResponse
    • SubscriptionInvoice
Home
Home
  1. Transactions

Get detailed payment status for a transaction

GET
/api/v1/transactions/{id}/payment-status
Transactions
Get detailed payment status for a transaction

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Responses

🟢200OK
application/json
Default Response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/transactions//payment-status' \
--header 'Authorization: <api-key>'
Response Response Example
{
    "success": true,
    "data": {
        "transactionId": "string",
        "status": "string",
        "expectedAmount": 0,
        "actualAmount": 0,
        "paymentTolerance": 0,
        "expiresAt": "string",
        "isExpired": true,
        "paymentType": "string",
        "refundInfo": {
            "hasRefund": true,
            "refundAmount": 0,
            "refundTxHash": "string",
            "refundAddress": "string"
        }
    }
}
Modified at 2026-02-16 19:26:45
Previous
Simulate payment for sandbox transactions
Next
Manually trigger refund for excess payment
Built with