restaurant-photos / #180
- restaurantId
- Walker - Botsford · Zulaufburgh · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-32-0/1200/800
- alt
- Walker - Botsford interior photo 1
- caption
- Ipsum vae cupio cinis confero earum concedo capto tunc.
- isPrimary
- true
- createdAt
Component variants
Medium
#180
#180
Small
restaurant-photos/180 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/180"
);
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/180"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/180"
)
restaurant_photo = res.json() {
"id": 180,
"restaurantId": 32,
"url": "https://picsum.photos/seed/restaurant-32-0/1200/800",
"alt": "Walker - Botsford interior photo 1",
"caption": "Ipsum vae cupio cinis confero earum concedo capto tunc.",
"isPrimary": true,
"createdAt": "2026-03-10T18:40:43.704Z"
}