Candidashire Villa
villa · Candidashire · $22.94/night · ★ 4.3 (1335)
573 Russel Plaza
Overview
properties / #72
villa · Candidashire · $22.94/night · ★ 4.3 (1335)
573 Russel Plaza
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/72" ); 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/72"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/72"
)
propertie = res.json() Response
{
"id": 72,
"name": "Candidashire Villa",
"slug": "candidashire-villa-72",
"type": "villa",
"countryAlpha2": "PT",
"city": "Candidashire",
"address": "573 Russel Plaza",
"latitude": 22.770906,
"longitude": 107.06825,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 2,
"pricePerNight": 22.94,
"currency": "BRL",
"rating": 4.3,
"ratingCount": 1335,
"hostUserId": 70,
"createdAt": "2026-05-20T13:42:28.578Z",
"updatedAt": "2026-05-21T01:53:10.530Z"
}