restaurant-photos / #141
- restaurantId
- Schowalter - McKenzie · Great Falls · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-25-4/1200/800
- alt
- Schowalter - McKenzie interior photo 5
- caption
- Consequuntur esse clamo cruciamentum hic caste cohibeo congregatio sum.
- isPrimary
- false
- createdAt
Component variants
Medium
#141
#141
Small
restaurant-photos/141 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/141" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/141"
);
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/141"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/141"
)
restaurant_photo = res.json() {
"id": 141,
"restaurantId": 25,
"url": "https://picsum.photos/seed/restaurant-25-4/1200/800",
"alt": "Schowalter - McKenzie interior photo 5",
"caption": "Consequuntur esse clamo cruciamentum hic caste cohibeo congregatio sum.",
"isPrimary": false,
"createdAt": "2024-09-12T10:33:39.638Z"
}