restaurant-photos / #94
- restaurantId
- Simonis, Reynolds and Harber · Dahliastead · ★ 3.5
- url
- https://picsum.photos/seed/restaurant-17-0/1200/800
- alt
- Simonis, Reynolds and Harber interior photo 1
- caption
- Tepesco libero videlicet deporto.
- isPrimary
- true
- createdAt
Component variants
Medium
#94
#94
Small
restaurant-photos/94 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/94"
);
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/94"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/94"
)
restaurant_photo = res.json() {
"id": 94,
"restaurantId": 17,
"url": "https://picsum.photos/seed/restaurant-17-0/1200/800",
"alt": "Simonis, Reynolds and Harber interior photo 1",
"caption": "Tepesco libero videlicet deporto.",
"isPrimary": true,
"createdAt": "2025-08-14T12:10:14.237Z"
}