restaurant-photos / #230
- restaurantId
- Franey, Volkman and Kutch · Piercecester · ★ 3.5
- url
- https://picsum.photos/seed/restaurant-41-0/1200/800
- alt
- Franey, Volkman and Kutch interior photo 1
- caption
- Deprimo demoror ventus desolo utpote velociter.
- isPrimary
- true
- createdAt
Component variants
Medium
#230
#230
Small
restaurant-photos/230 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/230"
);
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/230"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/230"
)
restaurant_photo = res.json() {
"id": 230,
"restaurantId": 41,
"url": "https://picsum.photos/seed/restaurant-41-0/1200/800",
"alt": "Franey, Volkman and Kutch interior photo 1",
"caption": "Deprimo demoror ventus desolo utpote velociter.",
"isPrimary": true,
"createdAt": "2025-04-14T12:08:39.007Z"
}