South Toniside Villa
villa · South Toniside · $1467.99/night · ★ 4.8 (1946)
12436 Weber Bridge
Overview
properties / #133
villa · South Toniside · $1467.99/night · ★ 4.8 (1946)
12436 Weber Bridge
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/133" ); 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/133"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/133"
)
propertie = res.json() Response
{
"id": 133,
"name": "South Toniside Villa",
"slug": "south-toniside-villa-133",
"type": "villa",
"countryAlpha2": "GB",
"city": "South Toniside",
"address": "12436 Weber Bridge",
"latitude": -45.621837,
"longitude": -80.31178,
"bedrooms": 2,
"bathrooms": 1.5,
"maxGuests": 4,
"pricePerNight": 1467.99,
"currency": "AED",
"rating": 4.8,
"ratingCount": 1946,
"hostUserId": 186,
"createdAt": "2025-05-12T22:14:36.710Z",
"updatedAt": "2026-05-08T22:33:14.593Z"
}