restaurant-photos / #133
- restaurantId
- Hirthe, Klein and Baumbach · North Giles · ★ 4.2
- url
- https://picsum.photos/seed/restaurant-24-0/1200/800
- alt
- Hirthe, Klein and Baumbach interior photo 1
- caption
- Subseco voluntarius avarus spiculum repellat clementia aiunt natus desparatus.
- isPrimary
- true
- createdAt
Component variants
Medium
#133
#133
Small
restaurant-photos/133 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/133" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/133"
);
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/133"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/133"
)
restaurant_photo = res.json() {
"id": 133,
"restaurantId": 24,
"url": "https://picsum.photos/seed/restaurant-24-0/1200/800",
"alt": "Hirthe, Klein and Baumbach interior photo 1",
"caption": "Subseco voluntarius avarus spiculum repellat clementia aiunt natus desparatus.",
"isPrimary": true,
"createdAt": "2025-02-19T00:57:34.634Z"
}