restaurant-photos / #135
- restaurantId
- Hirthe, Klein and Baumbach · North Giles · ★ 4.2
- url
- https://picsum.photos/seed/restaurant-24-2/1200/800
- alt
- Hirthe, Klein and Baumbach interior photo 3
- caption
- Aiunt capillus supellex adflicto tergeo.
- isPrimary
- false
- createdAt
Component variants
Medium
#135
#135
Small
restaurant-photos/135 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/135"
);
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/135"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/135"
)
restaurant_photo = res.json() {
"id": 135,
"restaurantId": 24,
"url": "https://picsum.photos/seed/restaurant-24-2/1200/800",
"alt": "Hirthe, Klein and Baumbach interior photo 3",
"caption": "Aiunt capillus supellex adflicto tergeo.",
"isPrimary": false,
"createdAt": "2024-07-03T05:45:55.976Z"
}