restaurant-photos / #239
- restaurantId
- Brown - Johnson · West Bernie · ★ 3.3
- url
- https://picsum.photos/seed/restaurant-43-0/1200/800
- alt
- Brown - Johnson interior photo 1
- caption
- Itaque vitium sophismata asporto fuga laudantium conspergo.
- isPrimary
- true
- createdAt
Component variants
Medium
#239
#239
Small
restaurant-photos/239 Related
References
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/239"
);
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/239"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/239"
)
restaurant_photo = res.json() {
"id": 239,
"restaurantId": 43,
"url": "https://picsum.photos/seed/restaurant-43-0/1200/800",
"alt": "Brown - Johnson interior photo 1",
"caption": "Itaque vitium sophismata asporto fuga laudantium conspergo.",
"isPrimary": true,
"createdAt": "2026-01-28T17:35:11.755Z"
}