Home
About
Join Today
Join Today
  • Sign Up
  • Sign In
Conatct Us
Home
About
Join Today
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. Recharge
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • Callbacks
    • Recharge Callback
  • NSDL Account Opening
    • BC Agent Onboarding
      POST
    • Create Account
      POST
    • Account Status
      GET
  • Recharge
    • Operator List
      GET
    • HLR Check
      POST
    • DTH Info
      POST
    • Browse Plans
      POST
    • Initiate Recharge
      POST
    • Check Status
      GET
  • Bill Payment
    • Biller List
      POST
    • Fetch Bill
      POST
    • Bill Pay
      POST
  • Verification Suite
    • Digilocker
      • Initiate
      • Check Status
      • Download Aadhaar
    • Aadhaar
      • Send OTP
      • Verify OTP
    • UPI Verification
      POST
    • Bank Verification
      POST
    • PAN Verification
      POST
    • GSTIN Verification
      POST
  • Comunications API
    • Send SMS OTP
    • Send Whatsapp OTP
  1. Recharge

Check Status

GET
/api/v1/recharge/status/{{requestId}}
Retrieve real-time recharge transaction status using a transaction reference or recharge ID. This API allows merchants to track whether a recharge is successful, pending, or failed, ensuring accurate wallet reconciliation and customer updates. Recommended for implementing retry logic, transaction verification, and automated status synchronization within recharge applications.

Request

Header Params

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 -g --request GET '/api/v1/recharge/status/{{requestId}}' \
--header 'x-client-id: {{client_id}}' \
--header 'x-client-secret: {{client_secret}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 200,
    "status": "success",
    "message": "Recharge successful.",
    "data": {
        "request_id": "rechtxn00012",
        "operator": "Airtel",
        "number": "99XXXXXX99",
        "amount": "22",
        "reference_id": "IMBRCH15102220260227_2e9f5af6",
        "operator_id": "1433134427",
        "ackno": "139973865",
        "status": "success",
        "refunded": false,
        "date": "2026-02-27 15:10:22"
    },
    "meta": {
        "request_id": "5a680a03-a21e-418e-81b6-fac633ec0bbc",
        "time": "2026-02-27T22:06:11+05:30"
    }
}
🟠404Record Not Found
🟠401Unauthorized
Previous
Initiate Recharge
Next
Biller List
Built with