Skip to main content
GET
/
abdm
/
v1
/
registration
/
pincode
/
{pincode}
cURL
curl --request GET \
  --url https://api.eka.care/abdm/v1/registration/pincode/{pincode} \
  --header 'Authorization: Bearer <token>'
{
  "dist_code": "339",
  "dist_name": "Ranchi",
  "pincode": "834001",
  "state_code": "20",
  "state_name": "Jharkhand"
}

Authorizations

Authorization
string
header
required

The API requires a Bearer token (JWT) for authentication.

Headers

X-Pt-Id
string

Eka User ID (OID)

X-Partner-Pt-Id
string

Partner User ID

X-Hip-Id
string

Partner HIP ID

Path Parameters

pincode
string
required

Pincode to fetch its details.

Response

OK

dist_code
string

Unique code representing the district

Examples:

"339"

dist_name
string

Name of the district

Examples:

"Ranchi"

pincode
string

Postal code of the area

Examples:

"834001"

state_code
string

Unique code representing the state

Examples:

"20"

state_name
string

Name of the state

Examples:

"Jharkhand"

I