restaurant-photos / #38
- restaurantId
- Ortiz, Torp and Howell · Fort Devanside · ★ 2.9
- url
- https://picsum.photos/seed/restaurant-7-0/1200/800
- alt
- Ortiz, Torp and Howell interior photo 1
- caption
- Ancilla vere adflicto terror spargo quis amiculum terminatio.
- isPrimary
- true
- createdAt
Component variants
Medium
#38
#38
Small
restaurant-photos/38 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/38"
);
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/38"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/38"
)
restaurant_photo = res.json() {
"id": 38,
"restaurantId": 7,
"url": "https://picsum.photos/seed/restaurant-7-0/1200/800",
"alt": "Ortiz, Torp and Howell interior photo 1",
"caption": "Ancilla vere adflicto terror spargo quis amiculum terminatio.",
"isPrimary": true,
"createdAt": "2026-01-04T17:03:07.865Z"
}