restaurant-photos / #139
- restaurantId
- Schowalter - McKenzie · Great Falls · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-25-2/1200/800
- alt
- Schowalter - McKenzie interior photo 3
- caption
- Repellendus super acerbitas amo ante crux decor toties.
- isPrimary
- false
- createdAt
Component variants
Medium
#139
#139
Small
restaurant-photos/139 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/139"
);
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/139"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/139"
)
restaurant_photo = res.json() {
"id": 139,
"restaurantId": 25,
"url": "https://picsum.photos/seed/restaurant-25-2/1200/800",
"alt": "Schowalter - McKenzie interior photo 3",
"caption": "Repellendus super acerbitas amo ante crux decor toties.",
"isPrimary": false,
"createdAt": "2024-09-25T21:39:37.822Z"
}