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.
| Name | Type | Required | Description |
|---|---|---|---|
| listingId | string | required | Public listing identifier from a prior search response. |
Worked example
curl -X POST https://api.avnester.com/public/v1/get_property_details \
-H 'Content-Type: application/json' \
-d '{
"listingId": "lst_abc123"
}'{
"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 foundThe listingId may have been removed or moderated out. Re-run search.
429Rate limit exceededBack off until the time in the Retry-After header; or authenticate with OAuth for the 10× tier.
Next steps
- → Try get_property_details in the playground (no signup, anon tier)
- → Register an OAuth client (10× rate budget)
- → Browse the other 6 tools
- → Full schema in the OpenAPI spec