restaurant-photos / #90
- restaurantId
- Rutherford - Mosciski · Feestport · ★ 4.8
- url
- https://picsum.photos/seed/restaurant-15-4/1200/800
- alt
- Rutherford - Mosciski interior photo 5
- caption
- Umquam celebrer advoco consequatur adeo corona excepturi adnuo caste aduro.
- isPrimary
- false
- createdAt
Component variants
Medium
#90
#90
Small
restaurant-photos/90 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/90"
);
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/90"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/90"
)
restaurant_photo = res.json() {
"id": 90,
"restaurantId": 15,
"url": "https://picsum.photos/seed/restaurant-15-4/1200/800",
"alt": "Rutherford - Mosciski interior photo 5",
"caption": "Umquam celebrer advoco consequatur adeo corona excepturi adnuo caste aduro.",
"isPrimary": false,
"createdAt": "2026-05-07T03:36:27.537Z"
}