restaurant-photos / #22
- restaurantId
- McKenzie - Toy · Hattiesburg · ★ 2.8
- url
- https://picsum.photos/seed/restaurant-4-2/1200/800
- alt
- McKenzie - Toy interior photo 3
- caption
- Coruscus nihil thermae excepturi cotidie vox concedo aranea.
- isPrimary
- false
- createdAt
Component variants
Medium
#22
#22
Small
restaurant-photos/22 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/22" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/22"
);
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/22"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/22"
)
restaurant_photo = res.json() {
"id": 22,
"restaurantId": 4,
"url": "https://picsum.photos/seed/restaurant-4-2/1200/800",
"alt": "McKenzie - Toy interior photo 3",
"caption": "Coruscus nihil thermae excepturi cotidie vox concedo aranea.",
"isPrimary": false,
"createdAt": "2025-03-07T22:46:39.285Z"
}