restaurant-photos / #104
- restaurantId
- Halvorson - Torp · Tonawanda · ★ 3.3
- url
- https://picsum.photos/seed/restaurant-18-4/1200/800
- alt
- Halvorson - Torp interior photo 5
- caption
- Adsidue velum celer cenaculum capillus stips tergum capio debilito delibero.
- isPrimary
- false
- createdAt
Component variants
Medium
#104
#104
Small
restaurant-photos/104 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/104" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/104"
);
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/104"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/104"
)
restaurant_photo = res.json() {
"id": 104,
"restaurantId": 18,
"url": "https://picsum.photos/seed/restaurant-18-4/1200/800",
"alt": "Halvorson - Torp interior photo 5",
"caption": "Adsidue velum celer cenaculum capillus stips tergum capio debilito delibero.",
"isPrimary": false,
"createdAt": "2025-12-10T18:08:39.498Z"
}