restaurant-photos / #231
- restaurantId
- Franey, Volkman and Kutch · Piercecester · ★ 3.5
- url
- https://picsum.photos/seed/restaurant-41-1/1200/800
- alt
- Franey, Volkman and Kutch interior photo 2
- caption
- Attero spectaculum velum dedico curvo temeritas desolo.
- isPrimary
- false
- createdAt
Component variants
Medium
#231
#231
Small
restaurant-photos/231 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/231" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/231"
);
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/231"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/231"
)
restaurant_photo = res.json() {
"id": 231,
"restaurantId": 41,
"url": "https://picsum.photos/seed/restaurant-41-1/1200/800",
"alt": "Franey, Volkman and Kutch interior photo 2",
"caption": "Attero spectaculum velum dedico curvo temeritas desolo.",
"isPrimary": false,
"createdAt": "2025-03-23T20:34:00.239Z"
}