BETA

Returns the featured properties configured on the customer's website. customerId and websiteId are resolved from the access token.

Resource information
AuthenticationRequired (API Token, Bearer)
HTTP MethodGET
ResponseJSON
Version1
Cache1 hour

Resource URL

https://mapaprop.app/api/action/mapaprop-chat-ai-v1/featureds

Parameters

KeyTypeRequiredDescription
maxintnoMaximum number of featured properties to return. Defaults to 150

Sample code

GET /api/action/mapaprop-chat-ai-v1/featureds?max=10 HTTP/1.1
Host: mapaprop.app
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Authorization: Bearer {access_token}

Response

ObjectFieldTypeRequiredDescription
ResponsefeaturedsArray of FeaturedyesFeatured properties of the website
FeaturedfeaturedIdintyesID of the featured record
propertyIdintyesProperty ID
codestringyesProperty code, with account prefix (e.g. 11099-casas236516)
seoUrlstringyesSEO path of the property
titlestringyesProperty title
descriptionstringyesProperty description
typeDescstringyesTranslated description of the property type
propertyTypeDescstringyesTranslated description of the property type (alias of typeDesc)
operationDescstringyesTranslated description of the operation
propertyOperationDescstringyesTranslated description of the operation (alias of operationDesc)
showPricebooleanyesWhether the customer chose to show the price of this featured property
pricenumberyesProperty price
currencystringyesCurrency of the price
occupancyintnoMaximum number of occupants (short-term rental)
ambiencesintnoNumber of rooms
roomsintnoNumber of bedrooms
bathroomsintnoNumber of bathrooms (only if declared)
buildingAreaintnoCovered surface in m² (only if declared)
landAreaintnoLand surface in m² (only if declared)
soldbooleannoPresent only if the property is marked as sold
rentedbooleannoPresent only if the property is marked as rented
suspendedbooleannoPresent only if the listing is suspended
reservedbooleannoPresent only if the property is reserved
addressstringnoProperty address
addressDescstringnoCombination of state, county and city (depending on availability)
zone1stringnoState/province name
zone2stringnoCounty/neighborhood name
zone3stringnoCity name
thumbnailstringyesFull URL of the thumbnail image
customerCountryDescstringyesCountry name of the customer's account

Sample response

{
    "featureds": [
        {
            "featuredId": 40063,
            "propertyId": 2600144,
            "code": "11099-casas236516",
            "seoUrl": "venta-de-departamento-en-palermo-capital-federal-11099-2600144",
            "title": "Departamento 2 ambientes en Palermo",
            "description": "Excelente departamento a estrenar...",
            "typeDesc": "Departamento",
            "propertyTypeDesc": "Departamento",
            "operationDesc": "Venta",
            "propertyOperationDesc": "Venta",
            "showPrice": true,
            "price": 210000,
            "currency": "USD",
            "ambiences": 2,
            "rooms": 2,
            "addressDesc": "Palermo,Capital Federal",
            "zone1": "Capital Federal",
            "zone2": "Palermo",
            "thumbnail": "https://s3.amazonaws.com/mapaprop-dev-image/photos/11099/2600144/1t.jpg",
            "customerCountryDesc": "Argentina"
        }
    ]
}