restaurant-photos / #229
- restaurantId
- Hudson - Lueilwitz · South Lesliefurt · ★ 4.9
- url
- https://picsum.photos/seed/restaurant-40-4/1200/800
- alt
- Hudson - Lueilwitz interior photo 5
- caption
- Torqueo cursim sustineo clamo incidunt odit cras.
- isPrimary
- false
- createdAt
Component variants
Medium
#229
#229
Small
restaurant-photos/229 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/229" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/229"
);
const restaurantPhoto = await res.json();import type { RestaurantPhoto } from "https://example-data.com/types/restaurant-photos.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/229"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/229"
)
restaurant_photo = res.json() {
"id": 229,
"restaurantId": 40,
"url": "https://picsum.photos/seed/restaurant-40-4/1200/800",
"alt": "Hudson - Lueilwitz interior photo 5",
"caption": "Torqueo cursim sustineo clamo incidunt odit cras.",
"isPrimary": false,
"createdAt": "2025-10-04T09:47:29.413Z"
}