restaurant-photos / #7
- restaurantId
- Robel, Walter and Davis · Honolulu · ★ 4.4
- url
- https://picsum.photos/seed/restaurant-2-0/1200/800
- alt
- Robel, Walter and Davis interior photo 1
- caption
- Natus vesper ultra caelum desipio volaticus claro.
- isPrimary
- true
- createdAt
Component variants
Medium
#7
#7
Small
restaurant-photos/7 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/7" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/7"
);
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/7"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/7"
)
restaurant_photo = res.json() {
"id": 7,
"restaurantId": 2,
"url": "https://picsum.photos/seed/restaurant-2-0/1200/800",
"alt": "Robel, Walter and Davis interior photo 1",
"caption": "Natus vesper ultra caelum desipio volaticus claro.",
"isPrimary": true,
"createdAt": "2024-10-14T20:52:29.438Z"
}