Voting Constituency API

Find the parliamentary and assembly constituency for a given address. Returns constituency name, number, and representative details.

Try in Playground →

Endpoint

GET/v4/voting_constituency_search.json

Authentication

Include your token in the request header:

X-Authorization-Token: your_token

Parameters

NameTypeDescription
addressstringAddress to look up constituency for

Code Examples

curl "https://apihub.latlong.ai/v4/voting_constituency_search.json?address=VALUE" \
  -H "X-Authorization-Token: YOUR_TOKEN"

Example Response

JSON
{
  "status": "success",
  "code": 1001,
  "data": {
    "parliamentary_constituency": "Bangalore South",
    "assembly_constituency": "BTM Layout",
    "state": "Karnataka"
  }
}