Core capabilities
- Real-time alerts: Subscribe to classified events via webhook to react to new, updated, or removed listings as they happen.
- Account introspection: Call
/authwith your token to verify credentials, see token metadata, and confirm the scopes attached to your account. - Property search: Query aggregated properties with filters (geography, price, type, features) via
POST /properties/search; results are paginated for efficient browsing. - Per‑ID lookups: Retrieve a single resource with
GET /classifieds/{id}orGET /properties/{id}. Traverse relations withGET /classifieds/{id}/propertyandGET /properties/{id}/classifieds.
Data freshness & access limits
Behind the scenes Immoteur enriches classifieds with geocoding, energy performance, and publisher metadata. Responses always honor themeta.dataAccessLimit block returned by the API so you only receive data your contract allows. Combine these limits with explicit query filters (departments, SIREN/SIRET, property types) for predictable coverage and fewer surprises.
Getting started
- Generate a personal access token and align data accesses with your agreement in the configuration guide.
- Validate the token with
curl -sS https://api.immoteur.com/public/v1/auth -H "Authorization: Bearer $IMMOTEUR_TOKEN". - Start with the webhook for listing deltas; complement with per‑ID endpoints and property search as needed.
contact@immoteur.com if you need an additional source, filter, or language feed.