Skip to content

Exclusive Transaction Read

GET comparables/exclusive/transactions/<sourceTransactionId>&countryCode=<countryCode>

or

GET comparables/exclusive/transactions/<uuid>&countryCode=<countryCode>

Get the exclusive transaction specified in the request path.

QueryParameters#

Field Description Type Remarks
countryCode ISO country code string transaction countryCode

Request#

curl -X GET 'https://api.pricehubble.com/api/v1/comparables/exclusive/transactions/119a6ead-4ac4-4b4b-b264-195a2895618e?countryCode=CH'
  -H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074'

Example Response#

{
    "uuid": "4b095e88-6641-4789-b01d-2644df2a2209",
    "sourceTransactionId": "ecd67966-f511-4b26-ac40-1d517f9c8819",
    "sourceOfferId": "",
    "description": "",
    "images": [
        {
            "url": "http://some-domain.com/a2b158e6-8570-4cdb-9105-454773335a49.jpg",
            "filename": "a2b158e6-8570-4cdb-9105-454773335a49.jpg"
        },
    ],
    "property": {
        "volume": null,
        "numberOfFloorsInBuilding": null,
        "buildingYear": null,
        "isNew": null,
        "propertyType": {
            "code": "apartment",
            "subcode": ""
        },
        "landArea": null,
        "hasLift": null,
        "floorNumber": null,
        "livingArea": 50.0,
        "numberOfRooms": null,
        "hasParkingSpaces": null,
        "numberOfIndoorParkingSpaces": null,
        "numberOfOutdoorParkingSpaces": null,
        "numberOfBathrooms": null,
        "isWheelchairAccessible": null,
        "numberOfBedrooms": null,
        "isFurnished": null,
        "renovationYear": null,
        "energyLabel": "",
        "hasPool": null,
        "hasSauna": null,
        "balconyArea": null,
        "gardenArea": null,
        "basementType": "",
        "basementSurface": null,
        "hasConcierge": null,
        "furnishedKitchen": null,
        "hasAirconditioning": null,
        "hasHeating": null,
        "centralisedHeating": null,
        "hasSolarPanels": null,
        "heatingType": "",
        "heatingSource": "",
        "view": "",
        "orientation": "",
        "isRented": null,
        "location": {
            "coordinates": {
                "latitude": 47.4,
                "longitude": 8.54
            },
            "address": {
                "postCode": "8008",
                "street": "Klausstrasse",
                "city": "Zurich",
                "houseNumber": ""
            }
        },
        "quality": {
            "kitchen": "simple",
            "bathrooms": "simple",
            "flooring": "simple",
            "windows": "simple",
            "masonry": "simple",
            "roof": "simple"
        },
        "condition": {
            "property": "renovation_needed",
            "kitchen": "renovation_needed",
            "bathrooms": "renovation_needed",
            "flooring": "renovation_needed",
            "windows": "renovation_needed",
            "masonry": "renovation_needed",
            "roof": "renovation_needed",
            "elec": "renovation_needed",
            "plumbing": "renovation_needed"
        }
    },
    "transaction": {
        "transactionDate": "2021-08-10",
        "salePrice": 1000000.0,
        "originalOfferPrice": null,
        "transactionsStatus": "sold",
        "preSaleDate": null,
        "feesAmount": null
    },
    "fullSourceData": {},
    "countryCode": "CH"
}

Response fields#

See Exclusive Transaction Creation