restaurant-photos / #34
- restaurantId
- McDermott - Metz · East Darlene · ★ 2.7
- url
- https://picsum.photos/seed/restaurant-6-4/1200/800
- alt
- McDermott - Metz interior photo 5
- caption
- Cunctatio auctor subito conservo deputo ait canto studio.
- isPrimary
- false
- createdAt
Component variants
Medium
#34
#34
Small
restaurant-photos/34 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/34"
);
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/34"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/34"
)
restaurant_photo = res.json() {
"id": 34,
"restaurantId": 6,
"url": "https://picsum.photos/seed/restaurant-6-4/1200/800",
"alt": "McDermott - Metz interior photo 5",
"caption": "Cunctatio auctor subito conservo deputo ait canto studio.",
"isPrimary": false,
"createdAt": "2026-02-04T07:35:36.438Z"
}