North Maeganside Villa
villa · North Maeganside · $133.25/night · ★ 3.6 (198)
76735 Carrie Skyway
Overview
properties / #5
villa · North Maeganside · $133.25/night · ★ 3.6 (198)
76735 Carrie Skyway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/5" ); 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/5"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/5"
)
propertie = res.json() Response
{
"id": 5,
"name": "North Maeganside Villa",
"slug": "north-maeganside-villa-5",
"type": "villa",
"countryAlpha2": "EG",
"city": "North Maeganside",
"address": "76735 Carrie Skyway",
"latitude": 4.780191,
"longitude": -142.245845,
"bedrooms": 1,
"bathrooms": 2,
"maxGuests": 1,
"pricePerNight": 133.25,
"currency": "EUR",
"rating": 3.6,
"ratingCount": 198,
"hostUserId": 100,
"createdAt": "2026-03-09T01:45:24.319Z",
"updatedAt": "2026-04-24T20:07:48.393Z"
}