restaurant-photos / #240
- restaurantId
- Brown - Johnson · West Bernie · ★ 3.3
- url
- https://picsum.photos/seed/restaurant-43-1/1200/800
- alt
- Brown - Johnson interior photo 2
- caption
- Clibanus suggero aro at thymum consequuntur vinum cohibeo coerceo stillicidium.
- isPrimary
- false
- createdAt
Component variants
Medium
#240
#240
Small
restaurant-photos/240 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/240"
);
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/240"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/240"
)
restaurant_photo = res.json() {
"id": 240,
"restaurantId": 43,
"url": "https://picsum.photos/seed/restaurant-43-1/1200/800",
"alt": "Brown - Johnson interior photo 2",
"caption": "Clibanus suggero aro at thymum consequuntur vinum cohibeo coerceo stillicidium.",
"isPrimary": false,
"createdAt": "2026-01-04T01:13:33.559Z"
}