Passer au contenu principal
GET
/
properties
/
{id}
Retrieve a single property
curl --request GET \
  --url https://api.immoteur.com/public/v1/properties/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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": [
          {
            "value": 680000,
            "timestamp": "2025-06-20T10:23:00Z"
          },
          {
            "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": "[email protected]",
          "phone": "+33123456789",
          "feesUrl": "https://www.agence-paris.fr/honoraires",
          "siren": "123456789"
        },
        "transaction": {
          "current": 650000,
          "initial": 680000,
          "perSquareUnit": 12500,
          "history": [
            {
              "value": 680000,
              "timestamp": "2025-06-20T10:23:00Z"
            },
            {
              "value": 650000,
              "timestamp": "2025-06-25T07:45:00Z"
            }
          ]
        }
      }
    ]
  },
  "meta": {
    "subscriptionPlan": "growth100",
    "dataAccessLimit": {
      "departments": [
        "75"
      ],
      "sirens": [
        "123456789"
      ],
      "sirets": [
        "12345678900011"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Property identifier (UUID).

Example:

"3a8f1d72-3d0b-4ee6-9a83-a7a9a73ae6c2"

Response

Property matching the requested identifier.

meta
object
required
property
object
required