City Outlets of France
shopping · Paris · ★ 3.8 (2929)
places / #22
shopping · Paris · ★ 3.8 (2929)
curl -sS \
"https://example-data.com/api/v1/places/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/22"
);
const place = await res.json();import type { Place } from "https://example-data.com/types/places.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/places/22"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/22"
)
place = res.json() {
"id": 22,
"name": "City Outlets of France",
"slug": "city-outlets-of-france-22",
"kind": "shopping",
"city": "Paris",
"countryAlpha2": "FR",
"latitude": -3.495271,
"longitude": -66.684089,
"rating": 3.8,
"ratingCount": 2929,
"description": "Abeo vivo pauper suffragium tabella caelestis. Cito derideo arca debilito tollo timor veniam. Considero exercitationem currus dolore coaegresco.",
"imageUrl": "https://picsum.photos/seed/place-22/1200/800",
"createdAt": "2024-11-27T19:47:23.324Z"
}