AVnesterDevelopers
← All tools

search_properties

Find verified residential listings in Coimbatore by locality, price band, BHK, or transaction type.

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

Parameters

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

NameTypeRequiredDescription
citystringrequiredCity name — Coimbatore is the launch market.
localityNamestringoptionalLocality / neighborhood within the city.
propertyTypestringoptionalapartment · villa · plot · independent_house.
bhknumberoptionalBedrooms (1, 2, 3, 4, 5+).
transactionTypestringoptionalsale · rent. Defaults to sale.
minPricenumberoptionalLower bound in INR (paise not needed; integer rupees).
maxPricenumberoptionalUpper bound in INR.
limitnumberoptionalPage size, max 20.

Worked example

# search 2BHK apartments in Saravanampatti, Coimbatore
curl -X POST https://api.avnester.com/public/v1/search_properties \
  -H 'Content-Type: application/json' \
  -d '{
       "city": "Coimbatore",
       "localityName": "Saravanampatti",
       "propertyType": "apartment",
       "bhk": 2,
       "limit": 5
     }'
Response
{
  "supported": true,
  "total": 12,
  "listings": [
    {
      "listingId": "lst_abc123",
      "title": "2 BHK apartment in Saravanampatti",
      "price": 6500000,
      "areaSqft": 1180,
      "bhk": 2,
      "handoffUrl": "https://avnester.com/p/lst_abc123",
      "reraId": "TN/02/Building/0123/2024"
    }
  ],
  "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

  • 400Invalid request body

    Check required parameters and types. The error.message field will name the offending parameter.

  • 200supported: false in body

    Out-of-coverage queries are not HTTP errors — surface the scopeMessage from the response body to the user.

  • 429Rate limit exceeded

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

Next steps