Searches sale agreements (compromis de vente) with cursor-based pagination. Requires SITE_PRODUCT:READ permission and RS:COMPROMIS_SEARCH right.
Use cases:
- Retrieve all sales completed after a given date
- Find a sale agreement by product reference or customer name
- Export sales data for valuation reports (avis de valeur)
Key response fields for sale tracking:
buyer_price— actual buyer price (price including agency fees)product_price— property net pricedate_act— deed signing date (= effective sale date)date_agreement— compromise signature date
Includes: Use the include field to load additional relations (buyer, seller, fees, agencies, etc.). Available includes: compromis_cs, agencies, buyer, buyer_groups, buyer_address, buyer_origin, buyer_admin, buyer_gender, buyer_informations, buyer_extended, buyer_relations, seller, seller_groups, seller_address, seller_origin, seller_admin, followed_nego, recommandation, fees, fees_nego, analytic
Free text search across customer names, product model, dossier number.
Filter by offer status. Only applicable for sales-offers search.
attente— Pendingacceptee— Acceptedrefusee— Refusedannulee— Cancelled
Filter by product reference (exact or partial match).
Filter by agency IDs. Each ID must be within the authenticated site's scope.
[ 123, 456 ]
Only return transactions modified after this date. Format: ISO 8601 with timezone offset (YYYY-MM-DDTHH:MM:SS+HH:MM).
Only return transactions created after this date. Format: ISO 8601 with timezone offset.
Opaque pagination cursor. Pass the meta.next_cursor value from the previous response to fetch the next page. Omit for the first page.
- Mock serverhttps://api-doc.immo-facile.com/_mock/openapi/transactions/agreement/search
- https://v2.immo-facile.com/api/v2/sitehttps://v2.immo-facile.com/api/v2/site/transactions/agreement/search
curl -i -X POST \
https://api-doc.immo-facile.com/_mock/openapi/transactions/agreement/search \
-H 'Authorization: Bearer <YOUR_opaque_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"product_model": "REF-2025-001",
"last_modified": "2025-01-01T00:00:00+01:00",
"per_page": 50,
"include": "buyer,seller,fees"
}'{ "data": [ { … } ], "meta": { "per_page": 25, "next_cursor": "eyJpZCI6MTIzfQ==", "prev_cursor": "string" }, "links": { "next": "string", "prev": "string" } }