AVnesterDevelopers
← All tools

compare_localities

Compare 2–4 Coimbatore localities on objective metrics — price, growth, infrastructure, livability.

Endpoint POST https://api.avnester.com/public/v1/compare_localities

Parameters

The most-used parameters. Full schema in the OpenAPI document.

NameTypeRequiredDescription
localityNamesstring[]required2–4 locality names within the same city.
citystringoptionalDisambiguator. Defaults to Coimbatore.

Worked example

# compare three Coimbatore localities
curl -X POST https://api.avnester.com/public/v1/compare_localities \
  -H 'Content-Type: application/json' \
  -d '{
       "localityNames": ["Saravanampatti", "Ganapathy", "Singanallur"],
       "city": "Coimbatore"
     }'
Response
{
  "supported": true,
  "comparison": [
    { "locality": "Saravanampatti", "avgPricePerSqft": 5400, "yoyGrowthPct": 12, "livability": "A-", "investment": "A" },
    { "locality": "Ganapathy", "avgPricePerSqft": 4200, "yoyGrowthPct": 8, "livability": "B+", "investment": "B+" },
    { "locality": "Singanallur", "avgPricePerSqft": 4800, "yoyGrowthPct": 10, "livability": "A", "investment": "A-" }
  ],
  "disclaimer": "AVnester estimates; not professional investment advice.",
  "attribution": "AVnester"
}

Rate limits

Anonymous

30/min

OAuth (Team)

300/min

Per-IP aggregate cap (across all tools): 60/min. OAuth registration lifts both the per-tool budget (10×) and removes the IP cap.

Common errors

  • 400Need 2–4 localityNames

    Provide between 2 and 4 locality names in localityNames[].

  • 429Rate limit exceeded

    Back off until the time in the Retry-After header; or authenticate with OAuth for the 10× tier.

Next steps