restaurant-photos / #226
- restaurantId
- Hudson - Lueilwitz · South Lesliefurt · ★ 4.9
- url
- https://picsum.photos/seed/restaurant-40-1/1200/800
- alt
- Hudson - Lueilwitz interior photo 2
- caption
- Angustus tracto amiculum allatus provident sum angelus alter crepusculum.
- isPrimary
- false
- createdAt
Component variants
Medium
#226
#226
Small
restaurant-photos/226 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/226"
);
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/226"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/226"
)
restaurant_photo = res.json() {
"id": 226,
"restaurantId": 40,
"url": "https://picsum.photos/seed/restaurant-40-1/1200/800",
"alt": "Hudson - Lueilwitz interior photo 2",
"caption": "Angustus tracto amiculum allatus provident sum angelus alter crepusculum.",
"isPrimary": false,
"createdAt": "2025-03-21T18:51:19.394Z"
}