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

Send OTP

POST
/api/v1/aadhaar/send-otp

Aadhaar Verification#

Verify customer identity using Aadhaar-based OTP authentication. This two-step process ensures secure, consent-based access to verified demographic details including name, DOB, address, and gender as per UIDAI records.

Step 1: Send OTP#

Generate and send an OTP to the mobile number linked with the customer's Aadhaar for secure verification.

Request

Header Params

Body Params application/json

Example
{
    "aadhaar_number": "997834567654"
}

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 '/api/v1/aadhaar/send-otp' \
--header 'x-client-id: {{client_id}}' \
--header 'x-client-secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "aadhaar_number": "997834567654"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "response_code": 200,
    "status": "success",
    "message": "OTP Sent successfully",
    "data": {
        "request_id": "ADHRVFR17562920251014_421874e5",
        "aadhaar": "997834567654",
        "status": "pending"
    },
    "meta": {
        "request_id": "4bf942a3-56f9-4ebe-98ba-73d7064d07d8",
        "time": "2025-10-14T17:56:29+05:30"
    }
}
🟠422Validation Error
Previous
Download Aadhaar
Next
Verify OTP
Built with