example-data.com
Menu
Browse docs and collections

Overview

properties / #119

Port Antwon Villa

villa · Port Antwon · $588.72/night · ★ 4.8 (1000)

9712 Hauck Groves

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/119" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/119"
);
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/119"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/119"
)
propertie = res.json()

Response

{
  "id": 119,
  "name": "Port Antwon Villa",
  "slug": "port-antwon-villa-119",
  "type": "villa",
  "countryAlpha2": "MA",
  "city": "Port Antwon",
  "address": "9712 Hauck Groves",
  "latitude": -24.796451,
  "longitude": -93.675521,
  "bedrooms": 2,
  "bathrooms": 4,
  "maxGuests": 6,
  "pricePerNight": 588.72,
  "currency": "BRL",
  "rating": 4.8,
  "ratingCount": 1000,
  "hostUserId": 77,
  "createdAt": "2025-01-16T13:25:49.561Z",
  "updatedAt": "2026-02-01T12:31:37.858Z"
}