restaurant-photos / #88
- restaurantId
- Rutherford - Mosciski · Feestport · ★ 4.8
- url
- https://picsum.photos/seed/restaurant-15-2/1200/800
- alt
- Rutherford - Mosciski interior photo 3
- caption
- Casso ducimus valens vero benigne facere vulariter venia thorax alias.
- isPrimary
- false
- createdAt
Component variants
Medium
#88
#88
Small
restaurant-photos/88 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/88"
);
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/88"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/88"
)
restaurant_photo = res.json() {
"id": 88,
"restaurantId": 15,
"url": "https://picsum.photos/seed/restaurant-15-2/1200/800",
"alt": "Rutherford - Mosciski interior photo 3",
"caption": "Casso ducimus valens vero benigne facere vulariter venia thorax alias.",
"isPrimary": false,
"createdAt": "2024-09-17T04:23:10.203Z"
}