restaurant-photos / #102
- restaurantId
- Halvorson - Torp · Tonawanda · ★ 3.3
- url
- https://picsum.photos/seed/restaurant-18-2/1200/800
- alt
- Halvorson - Torp interior photo 3
- caption
- Voveo deputo sint veritas inventore tolero tendo asper timidus.
- isPrimary
- false
- createdAt
Component variants
Medium
#102
#102
Small
restaurant-photos/102 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/102"
);
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/102"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/102"
)
restaurant_photo = res.json() {
"id": 102,
"restaurantId": 18,
"url": "https://picsum.photos/seed/restaurant-18-2/1200/800",
"alt": "Halvorson - Torp interior photo 3",
"caption": "Voveo deputo sint veritas inventore tolero tendo asper timidus.",
"isPrimary": false,
"createdAt": "2025-10-21T06:47:51.068Z"
}