HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
HomeAbout
Join Today
  • Sign Up
  • Sign In
Conatct Us
  1. Digilocker
  • Introduction
  • Getting Started
  • Authentication
  • HTTPS Status Codes
  • Rate Limits
  • Verification Suite
    • Digilocker
      • Initiate
        POST
      • Check Status
        GET
      • Download Aadhaar
        GET
    • 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. Digilocker

Check Status

GET
/api/v1/digilocker/status/{requestId}

🔄 DigiLocker Status Check#

Check the real-time authentication and consent status of a user's DigiLocker session using their unique request ID. Use this to verify if the user has completed the authorization flow.

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/digilocker/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": {
        "status": "client_initiated",
        "completed": false,
        "aadhaar_linked": false
    },
    "meta": {
        "request_id": "e37ec9dc-bcf6-419e-a12d-6406b370ea29",
        "time": "2025-08-30T20:55:12+05:30"
    }
}
🟠404Record Not Found
Previous
Initiate
Next
Download Aadhaar
Built with