Enkash Developer Portal
Home
Home
Login
  1. Non Reloadable Gift Cards
  • Back to home
  • APIs - Prepaid Card
  • Encryption & Decryption Guide
  • Reloadable Prepaid Cards
    • Auth Token
    • Create Reloadable Prepaid Card
    • Set Card PIN
    • Generate OTP
    • View Card Details
    • VKYC Link Generation
    • VKYC Status
    • View Card CVV
    • Update Card Limits & Controls
    • Get Card Limits & Controls
    • Order Physical Card
    • Get Card Balance
    • Load Money from Balance
    • Request Card Replacement
    • Block Card
    • Get Transaction Details
    • Get All Transaction Details
  • Non Reloadable Gift Cards
    • Auth Token
      POST
    • Create Non Reloadable Gift Card
      POST
    • Set Card PIN
      POST
    • Generate OTP
      POST
    • View Card Details
      POST
    • View Card CVV
      POST
    • Order Physical Card
      POST
    • Get Card Balance
      POST
    • Get Transaction Details
      POST
    • Get All Transaction details
      POST
Home
Home
Login
  1. Non Reloadable Gift Cards

Get Card Balance

POST
https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/card-balance
📌
Retrieve the current available balance of a specific card, including usable funds for transactions.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
"companyId" : "CEK" , 
"cardAccountId" : "CA123"

}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://pay-en-uat.enkash.in/api/v0/partner/enKashCard/card-balance' \
--header 'partnerId: CRM338L2H' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"companyId" : "CEK" , 
"cardAccountId" : "CA123"

}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 0,
    "message": "Success",
    "payload": {
        "totalBalance": 2000.00
    }
}
Modified at 2025-12-24 16:46:35
Previous
Order Physical Card
Next
Get Transaction Details
Built with