restaurant-photos / #225
- restaurantId
- Hudson - Lueilwitz · South Lesliefurt · ★ 4.9
- url
- https://picsum.photos/seed/restaurant-40-0/1200/800
- alt
- Hudson - Lueilwitz interior photo 1
- caption
- Modi cibus sophismata cunctatio et vapulus timidus calco curis virgo.
- isPrimary
- true
- createdAt
Component variants
Medium
#225
#225
Small
restaurant-photos/225 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/225"
);
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/225"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/225"
)
restaurant_photo = res.json() {
"id": 225,
"restaurantId": 40,
"url": "https://picsum.photos/seed/restaurant-40-0/1200/800",
"alt": "Hudson - Lueilwitz interior photo 1",
"caption": "Modi cibus sophismata cunctatio et vapulus timidus calco curis virgo.",
"isPrimary": true,
"createdAt": "2025-10-20T16:17:09.710Z"
}