KuvarPay API
Home
Home
  1. Checkout Sessions
  • Overview
  • SDK Integration Guide
  • Webhooks Integration Guide
  • Subscriptions Guide
  • Transactions
    • Calculate Payment Amount
      POST
    • Create Transaction
      POST
    • Get Transactions Details
      GET
    • Get Transactions
      GET
  • Checkout Sessions
    • Create Checkout Session
      POST
    • Get Checkout Session
      GET
  • 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
      POST
  • Server-Sent Events (SSE)
    • Get Transaction Details
      GET
    • Get Session Details
      GET
  • Subscriptions
    • Create Plans
      POST
    • Get Plans
      GET
    • Get Plans Details
      GET
    • Update Plans Details
      PATCH
    • Create Prices
      POST
    • Get Prices
      GET
    • Update Prices Details
      PATCH
    • Create Checkout Sessions
      POST
    • Get Checkout Sessions Details
      GET
    • Confirm Subscription Checkout
      POST
    • Create Subscriptions
      POST
    • Get Subscriptions
      GET
    • Get Subscriptions Details
      GET
    • Update Subscriptions Details
      PATCH
    • Delete Subscriptions Details
      DELETE
    • Renew Subscription
      POST
    • Confirm Subscription Cancellation
      POST
    • Create Subscription Invoices
      POST
    • Upgrade Subscription
      POST
    • Get Subscription Invoices
      GET
    • Downgrade Subscription
      POST
    • Renew Subscription Authorization
      POST
    • Create Metered Invoices
      POST
    • Get Subscription Invoices Details
      GET
    • Get Charge Attempts
      GET
    • Create Authorizations
      POST
    • Revoke Relay Authorization
      POST
    • Get Relay Authorization Status
      GET
  • 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. Checkout Sessions

Get Checkout Session

GET
/api/v1/checkout-sessions/{sessionId}
Checkout Sessions
Get checkout session details

Request

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

Responses

🟢200OK
application/json
Default Response
Body

🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/checkout-sessions/' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "sessionId": "string",
        "amount": 0,
        "currency": "string",
        "description": "string",
        "customerName": "string",
        "customerEmail": "string",
        "status": "PENDING",
        "paymentTolerance": 0,
        "fromCurrency": "string",
        "fromNetwork": "string",
        "refundAddress": "string",
        "depositAddress": "string",
        "callbackUrl": "string",
        "redirectUrl": "string",
        "expiresAt": "2019-08-24T14:15:22.123Z",
        "createdAt": "2019-08-24T14:15:22.123Z",
        "updatedAt": "2019-08-24T14:15:22.123Z",
        "transactions": [
            {
                "id": "string",
                "businessId": "string",
                "customerName": "string",
                "customerEmail": "string",
                "walletAddress": "string",
                "amount": 0,
                "cryptoAmount": 0,
                "currency": "string",
                "cryptoCurrency": "string",
                "status": "string",
                "payoutStatus": "string",
                "transactionHash": "string",
                "blockConfirmations": 0,
                "fees": 0,
                "exchangeRate": 0,
                "invoiceId": "string",
                "paymentLinkId": "string",
                "createdAt": "2019-08-24T14:15:22.123Z",
                "updatedAt": "2019-08-24T14:15:22.123Z",
                "accountName": "string",
                "accountNumber": "string",
                "actualAmount": 0,
                "addressSource": "string",
                "bankCode": "string",
                "callbackUrl": "string",
                "depositAddress": "string",
                "description": "string",
                "estimatedUsdtAmount": 0,
                "expectedAmount": 0,
                "expiresAt": "2019-08-24T14:15:22.123Z",
                "externalId": "string",
                "fromAmount": 0,
                "fromCurrency": "string",
                "fromNetwork": "string",
                "isMobileMoney": true,
                "notes": "string",
                "paymentTolerance": 0,
                "redirectUrl": "string",
                "reference": "string",
                "refundAddress": "string",
                "refundAmount": 0,
                "refundTxHash": "string",
                "toAmount": 0,
                "toCurrency": "string",
                "toNetwork": "string",
                "txHash": "string",
                "type": "string",
                "walletReferenceId": "string",
                "checkoutSessionId": "string",
                "gateioOrderId": "string",
                "usdValue": 0,
                "usdtAmount": 0,
                "riskFlags": [
                    "string"
                ],
                "riskLevel": "string",
                "riskScore": 0,
                "depositTxHash": "string",
                "settlementId": "string"
            }
        ]
    }
}
Modified at 2026-01-06 17:04:55
Previous
Create Checkout Session
Next
/api/v1/optimal-transfer-fee
Built with