restaurant-photos / #137
- restaurantId
- Schowalter - McKenzie · Great Falls · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-25-0/1200/800
- alt
- Schowalter - McKenzie interior photo 1
- caption
- Tres cur amaritudo attollo explicabo tamdiu casus.
- isPrimary
- true
- createdAt
Component variants
Medium
#137
#137
Small
restaurant-photos/137 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/137"
);
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/137"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/137"
)
restaurant_photo = res.json() {
"id": 137,
"restaurantId": 25,
"url": "https://picsum.photos/seed/restaurant-25-0/1200/800",
"alt": "Schowalter - McKenzie interior photo 1",
"caption": "Tres cur amaritudo attollo explicabo tamdiu casus.",
"isPrimary": true,
"createdAt": "2025-11-19T16:31:03.109Z"
}