restaurant-photos / #210
- restaurantId
- Cummings and Sons · Rodriguezville · ★ 3.5
- url
- https://picsum.photos/seed/restaurant-37-3/1200/800
- alt
- Cummings and Sons interior photo 4
- caption
- Cohors canto ciminatio soluta.
- isPrimary
- false
- createdAt
Component variants
Medium
#210
#210
Small
restaurant-photos/210 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/210" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/210"
);
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/210"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/210"
)
restaurant_photo = res.json() {
"id": 210,
"restaurantId": 37,
"url": "https://picsum.photos/seed/restaurant-37-3/1200/800",
"alt": "Cummings and Sons interior photo 4",
"caption": "Cohors canto ciminatio soluta.",
"isPrimary": false,
"createdAt": "2026-01-14T16:38:02.170Z"
}