# SeLoger Agency Sale ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/seloger/agency/sale` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 2 credits per call | | **Documentation** | https://www.piloterr.com/library/seloger-agency-sale | ## Description Retrieve paginated sale property listings published by a specific SeLoger agency using its numeric agency ID. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/seloger/agency/sale' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Sale listings for agency 18317 (page 1) ```json { "count": 21, "result": [ { "id": "251442903", "url": "https://www.seloger.com/annonces/achat/appartement/boulogne-billancourt-92/silly-gallieni/251442903.htm", "type": 1, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/1/4/o/b/14obdze5vc9jkjkg5xhz1m2yr4z6oofk2ls1vb2ga.jpg" }, "price": 449000, "surface": 60, "rooms_count": 3, "bedrooms_count": 2, "locality_label": "Boulogne-Billancourt" }, { "id": "262053933", "url": "https://www.seloger.com/annonces/achat/appartement/paris-13eme-75/olympiades-choisy/262053933.htm", "type": 1, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/0/f/m/a/0fma04f1ouosugxx7d77pguuyz4ohv5euyxhalgdm.jpg" }, "price": 483000, "surface": 94, "rooms_count": 5, "bedrooms_count": 3, "locality_label": "Paris 13ème" }, { "id": "259336891", "url": "https://www.seloger.com/annonces/achat/appartement/villemomble-93/carette-eglise/259336891.htm", "type": 1, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/1/j/r/v/1jrvp0kms0ie7avqh2qjb68mfev0aioo0bbgx7u0p.jpg" }, "price": 234500, "surface": 56, "rooms_count": 2, "bedrooms_count": 1, "locality_label": "Villemomble" }, { "id": "259336887", "url": "https://www.seloger.com/annonces/achat/appartement/villemomble-93/carette-eglise/259336887.htm", "type": 1, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/2/0/w/q/20wq0pw940vde6nyy5g0vkpxu7kbstneyqo7b7vzj.jpg" }, "price": 264300, "surface": 68, "rooms_count": 3, "bedrooms_count": 2, "locality_label": "Villemomble" } ] } ``` ### Sale listings for agency 3088 (page 1) ```json { "count": 13, "result": [ { "id": "250783955", "url": "https://www.seloger.com/annonces/achat/maison/le-tignet-06/250783955.htm", "type": 2, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/0/d/4/a/0d4an9fj575oxz65wq0ceotc2lpwo5jo0okh3qoio.jpg" }, "price": 769000, "surface": 130, "rooms_count": 4, "bedrooms_count": 3, "locality_label": "Le Tignet" }, { "id": "260369779", "url": "https://www.seloger.com/annonces/achat/maison/saint-cezaire-sur-siagne-06/260369779.htm", "type": 2, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/1/g/3/3/1g339fgwo15vp0j5j711fydslddoiqmybbjwh2nq8.jpg" }, "price": 479000, "surface": 117, "rooms_count": 3, "bedrooms_count": 2, "locality_label": "Saint-Cézaire-sur-Siagne" }, { "id": "257991879", "url": "https://www.seloger.com/annonces/achat/maison/le-plan-de-grasse-06/257991879.htm", "type": 2, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/0/v/0/e/0v0ejw6qb805wda717fe6a1htpjz3hjuy6s126ug0.jpg" }, "price": 369000, "surface": 84, "rooms_count": 3, "bedrooms_count": 2, "locality_label": "Le Plan de Grasse" }, { "id": "262249939", "url": "https://www.seloger.com/annonces/achat/appartement/le-tignet-06/262249939.htm", "type": 1, "image": { "alt": null, "src": "https://v.seloger.com/s/width/800/visuels/0/x/2/x/0x2xi7ol0jnsr6hxf5qp07ogum521how2aiqqd6sg.jpg" }, "price": 179000, "surface": 55, "rooms_count": 3, "bedrooms_count": 2, "locality_label": "Le Tignet" } ] } ``` ## Documentation ## Overview Retrieve property listings for sale published by a specific SeLoger agency. Returns paginated results with price, surface, room count, and direct listing URL. ## Quickstart ``` GET https://api.piloterr.com/v2/seloger/agency/sale?query=18317&page=1 ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | SeLoger agency ID (e.g. `18317`) | | `page` | number | no | Page number (default: `1`) | ## Main use cases - Monitor an agency's sale portfolio for competitive market intelligence - Track price changes and new listings from target agencies - Build property valuation tools using live sale price data - Feed investment pipelines with real-time SeLoger sale listings