Aadhaar Pincode Geofence

Retrieve geofence matches using the Aadhaar image along with the provided latitude and longitude

Submit Document

aadhaar_pincode_geofence

POST https://secctrl.tutelar.io/api/v1/kyc/vision/aadhaar_pincode_geofence

Post parameters description is given below,

Post Parameter
Type
Is Mandatory
Description

file

png, jpg, jpeg

Yes

Aadhar Image to retrive the details

latitude

String

Yes

User latitude to identify the geofence Mathces

longitude

String

Yes

User longitude to identify the geofence Mathces

Sample Post Parameters

To call this API, you must send a POST request with multipart/form-data containing: 1. file → Aadhaar image (.jpg, .jpeg, or .png ) 2. latitude → Current latitude to compare geofence 3. longitude → Current longitude to compare geofence

--form 'file=@"/path/to/Aadhaar.JPG"' \
--form 'latitude="9.7"' \
--form 'longitude="77.4"'
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "f787a54a-e7c4-46af-9f20-f7a4f496ab4b",
    "status": "completed",
    "result": {
        "message": "Uploads matches with geofence",
        "extracted_pincode": "625512",
        "pincode_geo_location": {
            "latitude": 9.6,
            "longitude": 77.3
        },
        "user_location": {
            "latitude": 9.7,
            "longitude": 77.4
        },
        "distance": "1.4 km",
        "threshold_distance": "1.5 km",
        "matches": true
    },
    "requested_at": "2025-08-26T05:34:47.660Z",
    "completed_at": "2025-08-26T05:34:49.135Z"
}

Check Document Status

Get document details

GET https://secctrl.tutelar.io/api/v1/kyc/vision/aadhaar_pincode_geofence

Query parameters description is given below,

Query Parameter
Type
Is Mandatory
Description

reference_id

String

Yes

Document reference id

{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "f787a54a-e7c4-46af-9f20-f7a4f496ab4b",
    "status": "completed",
    "result": {
        "message": "Uploads matches with geofence",
        "extracted_pincode": "625512",
        "pincode_geo_location": {
            "latitude": 9.6,
            "longitude": 77.3
        },
        "user_location": {
            "latitude": 9.7,
            "longitude": 77.4
        },
        "distance": "1.4 km",
        "threshold_distance": "1.5 km",
        "matches": true
    },
    "requested_at": "2025-08-26T05:34:47.660Z",
    "completed_at": "2025-08-26T05:34:49.135Z"
}

Last updated