HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. NSDL Account Opening
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • 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
  • NSDL Account Opening
    • BC Agent Onboarding
      POST
    • Create Account
      POST
    • Account Status
      GET
  • Comunications API
    • Send SMS OTP
      POST
    • Send Whatsapp OTP
      POST
  1. NSDL Account Opening

Account Status

GET
/api/v1/nsdl-payment-bank/status/{requestId}

🔄 Account Status Check#

Fetch real-time status of an account opening request to guide next actions.
Purpose: Track progress until a terminal state.
Output: status (e.g., INITIATED, PENDING_KYC, UNDER_REVIEW, CREATED, REJECTED) and, when available, account details like accountNumber/IFSC.

Request

Path Params

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 --request GET '/api/v1/nsdl-payment-bank/status/' \
--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": "Success",
    "data": {
        "agent_id": "IMBAGT0000",
        "pancard": "ABCPA8556H",
        "customer_name": "JOHN DOE",
        "account_number": "0404432400403",
        "ifsc_code": "NSPB0004566",
        "cif_number": 6765777,
        "account_type": "CURRENT",
        "bank_name": "NSDL Payments Bank",
        "branch": "One International Center, Prabhadevi",
        "profile_pic": "",
        "customer_care": "+91 44-76454553 / +91 11-645545301",
        "account_status": "success",
        "is_refunded": false,
        "is_completed": true
    },
    "meta": {
        "request_id": "8d951bf0-ea4b-44d4-ac69-2e3d2a846e99",
        "time": "2025-09-07T21:56:51+05:30"
    }
}
🟠404Record Not Found
🟠400Bad Request
Previous
Create Account
Next
Send SMS OTP
Built with