restaurant-photos / #23
- restaurantId
- McKenzie - Toy · Hattiesburg · ★ 2.8
- url
- https://picsum.photos/seed/restaurant-4-3/1200/800
- alt
- McKenzie - Toy interior photo 4
- caption
- Altus vis caste contigo amo attero cerno consequuntur aequus ustulo.
- isPrimary
- false
- createdAt
Component variants
Medium
#23
#23
Small
restaurant-photos/23 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/23"
);
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/23"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/23"
)
restaurant_photo = res.json() {
"id": 23,
"restaurantId": 4,
"url": "https://picsum.photos/seed/restaurant-4-3/1200/800",
"alt": "McKenzie - Toy interior photo 4",
"caption": "Altus vis caste contigo amo attero cerno consequuntur aequus ustulo.",
"isPrimary": false,
"createdAt": "2024-08-01T04:15:40.185Z"
}