restaurant-photos / #171
- restaurantId
- Mills, Kassulke and Marquardt · Jeffersonville · ★ 3.6
- url
- https://picsum.photos/seed/restaurant-30-0/1200/800
- alt
- Mills, Kassulke and Marquardt interior photo 1
- caption
- Stella abeo clementia appono ubi adhaero.
- isPrimary
- true
- createdAt
Component variants
Medium
#171
#171
Small
restaurant-photos/171 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/171" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/171"
);
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/171"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/171"
)
restaurant_photo = res.json() {
"id": 171,
"restaurantId": 30,
"url": "https://picsum.photos/seed/restaurant-30-0/1200/800",
"alt": "Mills, Kassulke and Marquardt interior photo 1",
"caption": "Stella abeo clementia appono ubi adhaero.",
"isPrimary": true,
"createdAt": "2026-02-20T03:43:15.890Z"
}