restaurant-photos / #128
- restaurantId
- Mitchell, O'Kon and Kunde · South Janelle · ★ 3.2
- url
- https://picsum.photos/seed/restaurant-22-2/1200/800
- alt
- Mitchell, O'Kon and Kunde interior photo 3
- caption
- Certus textilis civitas toties deduco vicinus assumenda curia assentator amplitudo.
- isPrimary
- false
- createdAt
Component variants
Medium
#128
#128
Small
restaurant-photos/128 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/128"
);
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/128"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/128"
)
restaurant_photo = res.json() {
"id": 128,
"restaurantId": 22,
"url": "https://picsum.photos/seed/restaurant-22-2/1200/800",
"alt": "Mitchell, O'Kon and Kunde interior photo 3",
"caption": "Certus textilis civitas toties deduco vicinus assumenda curia assentator amplitudo.",
"isPrimary": false,
"createdAt": "2025-07-25T08:45:31.730Z"
}