New Melisa House
house · New Melisa · $54.49/night · ★ 4.7 (396)
879 Buddy Glen
Overview
properties / #114
house · New Melisa · $54.49/night · ★ 4.7 (396)
879 Buddy Glen
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/114" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/114"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/114"
)
propertie = res.json() Response
{
"id": 114,
"name": "New Melisa House",
"slug": "new-melisa-house-114",
"type": "house",
"countryAlpha2": "MX",
"city": "New Melisa",
"address": "879 Buddy Glen",
"latitude": -21.86192,
"longitude": 162.713577,
"bedrooms": 4,
"bathrooms": 3,
"maxGuests": 3,
"pricePerNight": 54.49,
"currency": "USD",
"rating": 4.7,
"ratingCount": 396,
"hostUserId": 88,
"createdAt": "2024-07-25T15:39:31.204Z",
"updatedAt": "2025-10-16T10:45:38.386Z"
}