Retrieve a single property
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/{id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/{id}")
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{
"property": {
"id": "3a8f1d72-3d0b-4ee6-9a83-a7a9a73ae6c2",
"status": {
"current": "available"
},
"description": "Appartement lumineux de 3 pièces avec balcon.",
"location": {
"city": {
"name": "Paris",
"inseeCode": "75056"
},
"country": "france",
"department": "75",
"postcode": "75001",
"latitude": 48.8606,
"longitude": 2.3376
},
"meta": {
"firstSeenAt": "2025-06-20T10:23:00Z",
"lastSeenAt": "2025-06-25T07:45:00Z"
},
"property": {
"type": "apartment",
"area": 52.5,
"bedroomCount": 2,
"roomCount": 3,
"balconyExists": true,
"terraceExists": true,
"parkingExists": true
},
"media": {
"images": [
{
"id": "f19c2f5a-1f5c-42b4-acb3-9f2faaa11111",
"position": 1,
"url": "https://images.immoteur.com/sample/apt-paris-1.jpg"
}
]
},
"energy": {
"dpe": {
"label": "d"
},
"ges": {
"label": "e"
}
},
"transaction": {
"type": "sale",
"price": {
"initial": 680000,
"current": 650000,
"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"
}
]
}
},
"classifieds": [
{
"id": "f0a1d2c3-b4e5-6789-aaaa-bbbbbbbbbbbb",
"status": {
"current": "available"
},
"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,
"type": "agency",
"email": "contact@agence-paris.fr",
"phone": "+33123456789",
"feesUrl": "https://www.agence-paris.fr/honoraires",
"siren": "123456789"
},
"transaction": {
"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"
}
]
}
}
]
},
"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": "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",
"canonicalSuccessorPropertyId": "019d7c18-c82a-71c4-98e3-01b597ba772c",
"obsoletePropertyId": "019b3d31-4c58-732b-bb51-0ae8384dbc04",
"successors": [
{
"classifiedIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"propertyId": "019d7c18-c82a-71c4-98e3-01b597ba772c",
"sourceUrls": [
"<string>"
]
}
]
}{
"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
Retrieve a single property
Returns the latest aggregated snapshot of a property, including classifieds, transaction history, media, and lifecycle metadata.
GET
/
properties
/
{id}
Retrieve a single property
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/{id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/{id}")
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{
"property": {
"id": "3a8f1d72-3d0b-4ee6-9a83-a7a9a73ae6c2",
"status": {
"current": "available"
},
"description": "Appartement lumineux de 3 pièces avec balcon.",
"location": {
"city": {
"name": "Paris",
"inseeCode": "75056"
},
"country": "france",
"department": "75",
"postcode": "75001",
"latitude": 48.8606,
"longitude": 2.3376
},
"meta": {
"firstSeenAt": "2025-06-20T10:23:00Z",
"lastSeenAt": "2025-06-25T07:45:00Z"
},
"property": {
"type": "apartment",
"area": 52.5,
"bedroomCount": 2,
"roomCount": 3,
"balconyExists": true,
"terraceExists": true,
"parkingExists": true
},
"media": {
"images": [
{
"id": "f19c2f5a-1f5c-42b4-acb3-9f2faaa11111",
"position": 1,
"url": "https://images.immoteur.com/sample/apt-paris-1.jpg"
}
]
},
"energy": {
"dpe": {
"label": "d"
},
"ges": {
"label": "e"
}
},
"transaction": {
"type": "sale",
"price": {
"initial": 680000,
"current": 650000,
"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"
}
]
}
},
"classifieds": [
{
"id": "f0a1d2c3-b4e5-6789-aaaa-bbbbbbbbbbbb",
"status": {
"current": "available"
},
"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,
"type": "agency",
"email": "contact@agence-paris.fr",
"phone": "+33123456789",
"feesUrl": "https://www.agence-paris.fr/honoraires",
"siren": "123456789"
},
"transaction": {
"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"
}
]
}
}
]
},
"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": "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",
"canonicalSuccessorPropertyId": "019d7c18-c82a-71c4-98e3-01b597ba772c",
"obsoletePropertyId": "019b3d31-4c58-732b-bb51-0ae8384dbc04",
"successors": [
{
"classifiedIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"propertyId": "019d7c18-c82a-71c4-98e3-01b597ba772c",
"sourceUrls": [
"<string>"
]
}
]
}{
"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