restaurant-photos / #8
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- url
- https://picsum.photos/seed/restaurant-2-1/1200/800
- alt
- Robel, Walter and Davis interior photo 2
- caption
- Statim atavus vulticulus vergo theca delectatio thermae quos tenetur.
- isPrimary
- false
- createdAt
Component variants
Medium
#8
#8
Small
restaurant-photos/8 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/8"
);
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/8"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/8"
)
restaurant_photo = res.json() {
"id": 8,
"restaurantId": 2,
"url": "https://picsum.photos/seed/restaurant-2-1/1200/800",
"alt": "Robel, Walter and Davis interior photo 2",
"caption": "Statim atavus vulticulus vergo theca delectatio thermae quos tenetur.",
"isPrimary": false,
"createdAt": "2025-10-15T18:15:07.784Z"
}