List classifieds associated with a property
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/{id}/classifieds \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/{id}/classifieds"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.immoteur.com/public/v1/properties/{id}/classifieds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.immoteur.com/public/v1/properties/{id}/classifieds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.immoteur.com/public/v1/properties/{id}/classifieds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.immoteur.com/public/v1/properties/{id}/classifieds")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/{id}/classifieds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"classifieds": [
{
"id": "7f6e3b4d-9c22-46a0-8f20-0d1a2b3c4d5e",
"propertyId": "01920347-45c7-7b81-a2e4-d28c43f0d123",
"status": {
"current": "available"
},
"currency": "euro",
"squareUnit": "squareMeter",
"title": "Appartement lumineux proche du Louvre",
"description": "Appartement lumineux avec terrasse et vue dégagée.",
"source": {
"domain": "seloger.com",
"url": "https://www.seloger.com/annonces/achat/appartement/paris-1er-75/5-pieces/0.htm"
},
"publisher": {
"isProfessional": true,
"siren": "123456789",
"siret": "12345678900011"
},
"contact": {
"name": "Jean Dupont",
"email": "proprietaire@example.org",
"phoneExists": true,
"isRefusingSolicitation": false
},
"location": {
"city": {
"name": "Paris",
"inseeCode": "75056"
},
"postcode": "75001",
"department": "75",
"country": "france"
},
"property": {
"type": "apartment",
"area": 52,
"bedroomCount": 2,
"roomCount": 3,
"balconyExists": true
},
"transaction": {
"type": "sale",
"isExclusiveMandate": true,
"price": {
"current": 650000,
"initial": 680000,
"perSquareUnit": 12500,
"history": [
{
"id": "0aa4bc4b-7db0-4bf2-9a4a-f2e6f8d4f99a",
"value": 680000,
"timestamp": "2025-06-20T10:23:00Z"
},
{
"id": "4d4744d6-d7f1-4f8b-8c3c-fb8a1e3c0f8a",
"value": 650000,
"timestamp": "2025-06-25T07:45:00Z"
}
]
}
},
"media": {
"images": [
{
"id": "75caa436-207a-4f06-b0d1-3c1a3508dbbb",
"position": 1,
"url": "https://cdn.seloger.com/photo-1.jpg"
}
]
},
"meta": {
"firstSeenAt": "2025-06-20T10:23:00Z",
"lastModifiedAt": "2025-06-22T12:00:00Z",
"lastSeenAt": "2025-06-25T07:45:00Z"
}
}
],
"meta": {
"subscriptionPlan": "growth100",
"dataAccessLimit": {
"departments": [
"75"
],
"sirens": [
"123456789"
],
"sirets": [
"12345678900011"
]
}
}
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"message": "Data access (SIREN / SIRET / Department) not configured.",
"configurationUrl": "https://immoteur.com/en/dashboard/billing#data-access",
"documentationUrl": "https://docs.immoteur.com/pages/en/introduction"
}{
"code": "validation_error",
"detail": "One or more request fields are invalid.",
"instance": "/public/v1/properties/search",
"status": 422,
"title": "Validation error",
"traceId": "4bdb0c23-53fc-4d14-a300-c63eb420ec5e",
"type": "https://docs.immoteur.com/problems/validation_error",
"violations": [
{
"code": "validation",
"field": "id",
"message": "The id field must be a valid UUID."
}
]
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}Property
List classifieds associated with a property
Returns every classified currently attached to the given property with the same level of detail as /classifieds/{id} (publisher, media, transaction history, energy data, etc.).
GET
/
properties
/
{id}
/
classifieds
List classifieds associated with a property
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/{id}/classifieds \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/{id}/classifieds"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.immoteur.com/public/v1/properties/{id}/classifieds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.immoteur.com/public/v1/properties/{id}/classifieds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.immoteur.com/public/v1/properties/{id}/classifieds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.immoteur.com/public/v1/properties/{id}/classifieds")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/{id}/classifieds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"classifieds": [
{
"id": "7f6e3b4d-9c22-46a0-8f20-0d1a2b3c4d5e",
"propertyId": "01920347-45c7-7b81-a2e4-d28c43f0d123",
"status": {
"current": "available"
},
"currency": "euro",
"squareUnit": "squareMeter",
"title": "Appartement lumineux proche du Louvre",
"description": "Appartement lumineux avec terrasse et vue dégagée.",
"source": {
"domain": "seloger.com",
"url": "https://www.seloger.com/annonces/achat/appartement/paris-1er-75/5-pieces/0.htm"
},
"publisher": {
"isProfessional": true,
"siren": "123456789",
"siret": "12345678900011"
},
"contact": {
"name": "Jean Dupont",
"email": "proprietaire@example.org",
"phoneExists": true,
"isRefusingSolicitation": false
},
"location": {
"city": {
"name": "Paris",
"inseeCode": "75056"
},
"postcode": "75001",
"department": "75",
"country": "france"
},
"property": {
"type": "apartment",
"area": 52,
"bedroomCount": 2,
"roomCount": 3,
"balconyExists": true
},
"transaction": {
"type": "sale",
"isExclusiveMandate": true,
"price": {
"current": 650000,
"initial": 680000,
"perSquareUnit": 12500,
"history": [
{
"id": "0aa4bc4b-7db0-4bf2-9a4a-f2e6f8d4f99a",
"value": 680000,
"timestamp": "2025-06-20T10:23:00Z"
},
{
"id": "4d4744d6-d7f1-4f8b-8c3c-fb8a1e3c0f8a",
"value": 650000,
"timestamp": "2025-06-25T07:45:00Z"
}
]
}
},
"media": {
"images": [
{
"id": "75caa436-207a-4f06-b0d1-3c1a3508dbbb",
"position": 1,
"url": "https://cdn.seloger.com/photo-1.jpg"
}
]
},
"meta": {
"firstSeenAt": "2025-06-20T10:23:00Z",
"lastModifiedAt": "2025-06-22T12:00:00Z",
"lastSeenAt": "2025-06-25T07:45:00Z"
}
}
],
"meta": {
"subscriptionPlan": "growth100",
"dataAccessLimit": {
"departments": [
"75"
],
"sirens": [
"123456789"
],
"sirets": [
"12345678900011"
]
}
}
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"message": "Data access (SIREN / SIRET / Department) not configured.",
"configurationUrl": "https://immoteur.com/en/dashboard/billing#data-access",
"documentationUrl": "https://docs.immoteur.com/pages/en/introduction"
}{
"code": "validation_error",
"detail": "One or more request fields are invalid.",
"instance": "/public/v1/properties/search",
"status": 422,
"title": "Validation error",
"traceId": "4bdb0c23-53fc-4d14-a300-c63eb420ec5e",
"type": "https://docs.immoteur.com/problems/validation_error",
"violations": [
{
"code": "validation",
"field": "id",
"message": "The id field must be a valid UUID."
}
]
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}{
"code": "resource_not_found",
"detail": "The requested resource could not be found.",
"instance": "/public/v1/properties/019c12dc-339f-72ce-98db-663b44c0d924",
"status": 404,
"title": "Resource not found",
"traceId": "b94f4db5-2f5e-4b8f-9dd0-f2fe5c7a7a4f",
"type": "https://docs.immoteur.com/problems/resource_not_found"
}Autorisations
Send your Immoteur Personal Access Token in the Authorization header:
Authorization: Bearer <token>
You can create and manage your Personal Access Tokens here: https://immoteur.com/dashboard/settings status: current: available
Paramètres de chemin
Property identifier (UUID).
Exemple:
"3a8f1d72-3d0b-4ee6-9a83-a7a9a73ae6c2"
⌘I