restaurant-photos / #55
- restaurantId
- Cruickshank - Jacobi · Vandervortfield · ★ 3.0
- url
- https://picsum.photos/seed/restaurant-10-1/1200/800
- alt
- Cruickshank - Jacobi interior photo 2
- caption
- Quia deduco amoveo repudiandae delicate pauci curia delinquo textilis deprimo.
- isPrimary
- false
- createdAt
Component variants
Medium
#55
#55
Small
restaurant-photos/55 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/55"
);
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/55"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/55"
)
restaurant_photo = res.json() {
"id": 55,
"restaurantId": 10,
"url": "https://picsum.photos/seed/restaurant-10-1/1200/800",
"alt": "Cruickshank - Jacobi interior photo 2",
"caption": "Quia deduco amoveo repudiandae delicate pauci curia delinquo textilis deprimo.",
"isPrimary": false,
"createdAt": "2026-03-18T11:13:48.467Z"
}