# Bordeaux Sold Property Prices and Price per m2 (DVF)

**Use case:** 

DVF task returning official recorded sale prices and price per square meter for Bordeaux, from the French land registry. Change the city or year freely.

## Input

```json
{
  "locations": [
    "Bordeaux"
  ],
  "years": [
    "2024"
  ],
  "propertyTypes": [
    "Maison",
    "Appartement"
  ],
  "onlySales": true,
  "maxResults": 1000
}
```

## Output

```json
{
  "date": {
    "label": "Sale date",
    "format": "string"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "price": {
    "label": "Sale price (EUR)",
    "format": "number"
  },
  "surfaceBuilt": {
    "label": "Built surface (m2)",
    "format": "number"
  },
  "pricePerM2": {
    "label": "Price per m2 (EUR)",
    "format": "number"
  },
  "rooms": {
    "label": "Main rooms",
    "format": "number"
  },
  "address": {
    "label": "Street address",
    "format": "string"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "string"
  },
  "commune": {
    "label": "Commune",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DVF France 🇫🇷 : Prix de Vente Officiels & Prix au m²](https://apify.com/tagadanar/french-real-estate-dvf) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tagadanar/french-real-estate-dvf) to learn more, explore other use cases, and run it yourself.