restaurant-photos / #12
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- url
- https://picsum.photos/seed/restaurant-2-5/1200/800
- alt
- Robel, Walter and Davis interior photo 6
- caption
- Conitor virtus tantillus crur aegre denuncio fugit coadunatio.
- isPrimary
- false
- createdAt
Component variants
Medium
#12
#12
Small
restaurant-photos/12 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/12"
);
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/12"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/12"
)
restaurant_photo = res.json() {
"id": 12,
"restaurantId": 2,
"url": "https://picsum.photos/seed/restaurant-2-5/1200/800",
"alt": "Robel, Walter and Davis interior photo 6",
"caption": "Conitor virtus tantillus crur aegre denuncio fugit coadunatio.",
"isPrimary": false,
"createdAt": "2025-08-13T22:46:03.272Z"
}