City Outlets of France
shopping · Paris · ★ 3.8 (2929)
Overview
places / #22
shopping · Paris · ★ 3.8 (2929)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/22" ); const place = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";
const res = await fetch(
"https://example-data.com/api/v1/places/22"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/22"
)
place = res.json() Response
{
"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"
}