Real estate property listing with type, location, pricing, specifications (bedrooms, bathrooms, area), year built, features, and images. Used for property rental platforms, real estate marketplaces, and accommodation booking systems.
https://api.mockly.codes/properties?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/propertiesGet a collection of properties
/travel/properties/properties/:idGet a single property by ID
/travel/properties/:id/properties/metaGet resource metadata and schema
/travel/properties/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/properties?q=laptopGET https://api.mockly.codes/properties?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 properties
fetch('https://api.mockly.codes/properties?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/properties?count=10'
)
data = response.json()curl "https://api.mockly.codes/properties?count=10"fetch('https://api.mockly.codes/properties?nocache=true')idintegerUnique identifier for the property
random_inttitlestringProperty title or listing name
property_titledescriptionstringDetailed description of the property, amenities, and features
paragraphtypestringProperty type (e.g., Apartment, House, Villa, Condo, Studio)
property_typestatusstringProperty status (e.g., available, rented, sold, under_maintenance)
property_statusaddressstringStreet address of the property
addresscitystringCity where the property is located
citystatestringState or province where the property is located
statecountrystringCountry where the property is located
countryzip_codestringPostal or ZIP code
ziplatitudenumberGeographic latitude coordinate of the property
latitudelongitudenumberGeographic longitude coordinate of the property
longitudepricenumberProperty price (sale) or rental rate per period
property_pricecurrencystringISO currency code for the price (e.g., USD, EUR, GBP)
currencybedroomsintegerNumber of bedrooms
bedroomsbathroomsintegerNumber of bathrooms
bathroomsareanumberTotal area in square meters
property_areayear_builtintegerYear when the property was built
year_builtfeaturesarrayArray of property features (e.g., WiFi, Parking, Pool, Garden, Air Conditioning)
property_featuresimagestringURL to the property's main image
image_urluricountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request