AVnesterDevelopers
← All tools

get_property_details

Get the public detail view for a single listing — price, area, amenities, RERA registration status.

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

Parameters

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

NameTypeRequiredDescription
listingIdstringrequiredPublic listing identifier from a prior search response.

Worked example

# fetch full detail for a single listing
curl -X POST https://api.avnester.com/public/v1/get_property_details \
  -H 'Content-Type: application/json' \
  -d '{
       "listingId": "lst_abc123"
     }'
Response
{
  "supported": true,
  "listing": {
    "listingId": "lst_abc123",
    "title": "2 BHK apartment in Saravanampatti",
    "price": 6500000,
    "areaSqft": 1180,
    "bhk": 2,
    "ageYears": 3,
    "floor": 4,
    "totalFloors": 7,
    "amenities": ["lift", "parking", "power_backup"],
    "reraId": "TN/02/Building/0123/2024",
    "handoffUrl": "https://avnester.com/p/lst_abc123"
  },
  "attribution": "AVnester"
}

Rate limits

Anonymous

60/min

OAuth (Team)

600/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

  • 404Listing not found

    The listingId may have been removed or moderated out. Re-run search.

  • 429Rate limit exceeded

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

Next steps