restaurant-photos / #114
- restaurantId
- Hickle, Glover and Christiansen · Zulauffurt · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-20-1/1200/800
- alt
- Hickle, Glover and Christiansen interior photo 2
- caption
- Eligendi alveus arma tendo summopere verbera deludo dolorum.
- isPrimary
- false
- createdAt
Component variants
Medium
#114
#114
Small
restaurant-photos/114 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/114"
);
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/114"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/114"
)
restaurant_photo = res.json() {
"id": 114,
"restaurantId": 20,
"url": "https://picsum.photos/seed/restaurant-20-1/1200/800",
"alt": "Hickle, Glover and Christiansen interior photo 2",
"caption": "Eligendi alveus arma tendo summopere verbera deludo dolorum.",
"isPrimary": false,
"createdAt": "2024-10-21T00:23:16.645Z"
}