GET
/v4/voting_constituency_search.jsonVoting Constituency API
Find the parliamentary and assembly constituency for a given address. Returns constituency name, number, and representative details.
Try in Playground →Authentication
Include your API token in the request header:
X-Authorization-Token: your_token_here
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| address | string | Required | Address 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"
Response
JSON200 OK
{
"status": "success",
"code": 1001,
"data": {
"parliamentary_constituency": "Bangalore South",
"assembly_constituency": "BTM Layout",
"state": "Karnataka"
}
}Ready to try it?
Test this API interactively in the playground.

