Find a property by URL
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/lookup \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/lookup"
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/lookup', 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/lookup",
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/lookup"
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/lookup")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/lookup")
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": "8c7f53d2-b9a4-4c11-9d7c-8b2cbda1698a",
"description": "Appartement traversant avec balcon filant.",
"location": {
"city": {
"inseeCode": "75056",
"name": "Paris"
},
"country": "france",
"department": "75",
"postcode": "75001",
"latitude": 48.859,
"longitude": 2.347
},
"status": {
"current": "available"
},
"transaction": {
"price": {
"current": 650000,
"initial": 690000,
"history": [
{
"id": "11111111-2222-4333-8444-555555555555",
"timestamp": "2024-05-10T11:15:00Z",
"value": 690000
},
{
"id": "66666666-7777-4888-9999-aaaaaaaaaaaa",
"timestamp": "2024-05-18T09:45:00Z",
"value": 650000
}
]
},
"type": "sale"
},
"classifieds": [
{
"id": "3bf6c821-a572-4ef7-9c54-070f949a961d",
"source": {
"domain": "seloger.com",
"url": "https://www.seloger.com/annonces/achat/appartement/paris-1er-75/5-pieces/0.htm"
},
"status": {
"current": "available"
},
"transaction": {
"current": 650000,
"initial": 690000,
"history": [
{
"id": "11111111-2222-4333-8444-555555555555",
"timestamp": "2024-05-10T11:15:00Z",
"value": 690000
},
{
"id": "66666666-7777-4888-9999-aaaaaaaaaaaa",
"timestamp": "2024-05-18T09:45:00Z",
"value": 650000
}
]
},
"publisher": {
"isProfessional": true,
"siren": "123456789",
"siret": "12345678900011"
}
}
],
"meta": {
"firstSeenAt": "2024-05-01T08:00:00Z",
"lastSeenAt": "2024-05-20T09:00:00Z"
},
"property": {
"type": "apartment"
}
},
"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"
}{
"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
Find a property by URL
Resolve the aggregated property associated with a classified URL. Tracking parameters (for example utm_*, fbclid, gclid) and fragment identifiers are ignored so you can safely reuse URLs copied from marketing campaigns.
Provide the canonical classified URL when possible. When a scheme is missing the lookup defaults to https.
GET
/
properties
/
lookup
Find a property by URL
curl --request GET \
--url https://api.immoteur.com/public/v1/properties/lookup \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.immoteur.com/public/v1/properties/lookup"
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/lookup', 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/lookup",
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/lookup"
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/lookup")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.immoteur.com/public/v1/properties/lookup")
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": "8c7f53d2-b9a4-4c11-9d7c-8b2cbda1698a",
"description": "Appartement traversant avec balcon filant.",
"location": {
"city": {
"inseeCode": "75056",
"name": "Paris"
},
"country": "france",
"department": "75",
"postcode": "75001",
"latitude": 48.859,
"longitude": 2.347
},
"status": {
"current": "available"
},
"transaction": {
"price": {
"current": 650000,
"initial": 690000,
"history": [
{
"id": "11111111-2222-4333-8444-555555555555",
"timestamp": "2024-05-10T11:15:00Z",
"value": 690000
},
{
"id": "66666666-7777-4888-9999-aaaaaaaaaaaa",
"timestamp": "2024-05-18T09:45:00Z",
"value": 650000
}
]
},
"type": "sale"
},
"classifieds": [
{
"id": "3bf6c821-a572-4ef7-9c54-070f949a961d",
"source": {
"domain": "seloger.com",
"url": "https://www.seloger.com/annonces/achat/appartement/paris-1er-75/5-pieces/0.htm"
},
"status": {
"current": "available"
},
"transaction": {
"current": 650000,
"initial": 690000,
"history": [
{
"id": "11111111-2222-4333-8444-555555555555",
"timestamp": "2024-05-10T11:15:00Z",
"value": 690000
},
{
"id": "66666666-7777-4888-9999-aaaaaaaaaaaa",
"timestamp": "2024-05-18T09:45:00Z",
"value": 650000
}
]
},
"publisher": {
"isProfessional": true,
"siren": "123456789",
"siret": "12345678900011"
}
}
],
"meta": {
"firstSeenAt": "2024-05-01T08:00:00Z",
"lastSeenAt": "2024-05-20T09:00:00Z"
},
"property": {
"type": "apartment"
}
},
"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"
}{
"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 requête
Classified URL pointing to any listing grouped under the targeted property. Accepts incomplete URLs without a scheme; fragment identifiers and tracking parameters are ignored during lookup.
Required string length:
3 - 2048⌘I