restaurant-photos / #172
- restaurantId
- Mills, Kassulke and Marquardt · Jeffersonville · ★ 3.6
- url
- https://picsum.photos/seed/restaurant-30-1/1200/800
- alt
- Mills, Kassulke and Marquardt interior photo 2
- caption
- Adnuo surgo abduco tunc aufero.
- isPrimary
- false
- createdAt
Component variants
Medium
#172
#172
Small
restaurant-photos/172 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/172"
);
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/172"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/172"
)
restaurant_photo = res.json() {
"id": 172,
"restaurantId": 30,
"url": "https://picsum.photos/seed/restaurant-30-1/1200/800",
"alt": "Mills, Kassulke and Marquardt interior photo 2",
"caption": "Adnuo surgo abduco tunc aufero.",
"isPrimary": false,
"createdAt": "2024-05-31T10:35:28.039Z"
}