Passer au contenu principal
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>'
{
  "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": "[email protected]"
      },
      "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",
        "price": {
          "current": 650000,
          "initial": 680000,
          "perSquareUnit": 12500,
          "history": [
            {
              "value": 680000,
              "timestamp": "2025-06-20T10:23:00Z"
            },
            {
              "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"
      ]
    }
  }
}

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

Classifieds linked to the requested property.

classifieds
object[]
required

Detailed classifieds linked to the property.

meta
object
required