restaurant-photos / #33
- restaurantId
- McDermott - Metz · East Darlene · ★ 2.7
- url
- https://picsum.photos/seed/restaurant-6-3/1200/800
- alt
- McDermott - Metz interior photo 4
- caption
- Valetudo sui verumtamen tamquam tui urbs stabilis basium.
- isPrimary
- false
- createdAt
Component variants
Medium
#33
#33
Small
restaurant-photos/33 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/33"
);
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/33"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/33"
)
restaurant_photo = res.json() {
"id": 33,
"restaurantId": 6,
"url": "https://picsum.photos/seed/restaurant-6-3/1200/800",
"alt": "McDermott - Metz interior photo 4",
"caption": "Valetudo sui verumtamen tamquam tui urbs stabilis basium.",
"isPrimary": false,
"createdAt": "2024-10-27T15:45:39.222Z"
}