restaurant-photos / #138
- restaurantId
- Schowalter - McKenzie · Great Falls · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-25-1/1200/800
- alt
- Schowalter - McKenzie interior photo 2
- caption
- Delibero blanditiis appono deinde conscendo.
- isPrimary
- false
- createdAt
Component variants
Medium
#138
#138
Small
restaurant-photos/138 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/138"
);
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/138"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/138"
)
restaurant_photo = res.json() {
"id": 138,
"restaurantId": 25,
"url": "https://picsum.photos/seed/restaurant-25-1/1200/800",
"alt": "Schowalter - McKenzie interior photo 2",
"caption": "Delibero blanditiis appono deinde conscendo.",
"isPrimary": false,
"createdAt": "2025-12-19T16:08:25.334Z"
}