restaurant-photos / #134
- restaurantId
- Hirthe, Klein and Baumbach · North Giles · ★ 4.2
- url
- https://picsum.photos/seed/restaurant-24-1/1200/800
- alt
- Hirthe, Klein and Baumbach interior photo 2
- caption
- Approbo consectetur commodo tamisium supplanto deficio videlicet vox.
- isPrimary
- false
- createdAt
Component variants
Medium
#134
#134
Small
restaurant-photos/134 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/134"
);
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/134"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/134"
)
restaurant_photo = res.json() {
"id": 134,
"restaurantId": 24,
"url": "https://picsum.photos/seed/restaurant-24-1/1200/800",
"alt": "Hirthe, Klein and Baumbach interior photo 2",
"caption": "Approbo consectetur commodo tamisium supplanto deficio videlicet vox.",
"isPrimary": false,
"createdAt": "2024-11-25T01:15:44.101Z"
}