restaurant-photos / #117
- restaurantId
- Hickle, Glover and Christiansen · Zulauffurt · ★ 3.7
- url
- https://picsum.photos/seed/restaurant-20-4/1200/800
- alt
- Hickle, Glover and Christiansen interior photo 5
- caption
- Coaegresco degero conscendo atrocitas explicabo pauper excepturi.
- isPrimary
- false
- createdAt
Component variants
Medium
#117
#117
Small
restaurant-photos/117 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/117" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/117"
);
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/117"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/117"
)
restaurant_photo = res.json() {
"id": 117,
"restaurantId": 20,
"url": "https://picsum.photos/seed/restaurant-20-4/1200/800",
"alt": "Hickle, Glover and Christiansen interior photo 5",
"caption": "Coaegresco degero conscendo atrocitas explicabo pauper excepturi.",
"isPrimary": false,
"createdAt": "2024-09-26T06:24:11.811Z"
}