KuvarPay API
Home
Home
  1. Subscriptions
  • Overview
  • SDK Integration Guide
  • Webhooks Integration Guide
  • Subscriptions Guide
  • Transactions
    • Calculate Payment Amount
    • Create Transaction
    • Get Transactions Details
    • Get Transactions
  • Checkout Sessions
    • Create Checkout Session
    • Get Checkout Session
  • Transfer Fees
    • /api/v1/optimal-transfer-fee
  • Sandbox Simulator
    • Force Simulator Scenario
    • Force Transaction Status
  • Invoices
    • Create a new invoice
    • Send invoice email to customer
  • Payment Links
    • Create a new payment link
  • Server-Sent Events (SSE)
    • Get Transaction Details
    • Get Session Details
  • 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. Subscriptions

Get Subscriptions Details

GET
/api/v1/subscriptions/{id}
Subscriptions

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/subscriptions/' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "id": "string",
        "business_id": "string",
        "customer_id": "string",
        "price_id": "string",
        "payment_method_id": "string",
        "merchant_id": "string",
        "auth_id": "string",
        "status": "string",
        "current_period_start": "string",
        "current_period_end": "string",
        "trial_start": "string",
        "trial_end": "string",
        "cancel_at_period_end": true,
        "canceled_at": "string",
        "ended_at": "string",
        "metadata": {},
        "created_at": "string",
        "updated_at": "string",
        "price": {},
        "plan": {},
        "customer": {},
        "payment_method": {}
    }
}
Modified at 2026-01-06 17:05:00
Previous
Get Subscriptions
Next
Update Subscriptions Details
Built with