Euless Villa
villa · Euless · $865.52/night · ★ 3.5 (539)
410 Wehner Ramp
Overview
properties / #108
villa · Euless · $865.52/night · ★ 3.5 (539)
410 Wehner Ramp
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/108" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/108" ); 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/108"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/108"
)
propertie = res.json() Response
{
"id": 108,
"name": "Euless Villa",
"slug": "euless-villa-108",
"type": "villa",
"countryAlpha2": "SG",
"city": "Euless",
"address": "410 Wehner Ramp",
"latitude": 44.302788,
"longitude": 3.225713,
"bedrooms": 3,
"bathrooms": 2.5,
"maxGuests": 1,
"pricePerNight": 865.52,
"currency": "AED",
"rating": 3.5,
"ratingCount": 539,
"hostUserId": 130,
"createdAt": "2025-07-13T09:27:14.622Z",
"updatedAt": "2026-05-13T09:20:36.745Z"
}