restaurant-photos / #136
- restaurantId
- Hirthe, Klein and Baumbach · North Giles · ★ 4.2
- url
- https://picsum.photos/seed/restaurant-24-3/1200/800
- alt
- Hirthe, Klein and Baumbach interior photo 4
- caption
- Terra tamquam auctus temeritas adfectus.
- isPrimary
- false
- createdAt
Component variants
Medium
#136
#136
Small
restaurant-photos/136 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/136"
);
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/136"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/136"
)
restaurant_photo = res.json() {
"id": 136,
"restaurantId": 24,
"url": "https://picsum.photos/seed/restaurant-24-3/1200/800",
"alt": "Hirthe, Klein and Baumbach interior photo 4",
"caption": "Terra tamquam auctus temeritas adfectus.",
"isPrimary": false,
"createdAt": "2024-07-14T06:51:34.383Z"
}