restaurant-photos / #39
- restaurantId
- Ortiz, Torp and Howell · Fort Devanside · ★ 2.9
- url
- https://picsum.photos/seed/restaurant-7-1/1200/800
- alt
- Ortiz, Torp and Howell interior photo 2
- caption
- Varius urbanus defessus contra censura bestia caute sit ager capitulus.
- isPrimary
- false
- createdAt
Component variants
Medium
#39
#39
Small
restaurant-photos/39 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/39"
);
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/39"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/39"
)
restaurant_photo = res.json() {
"id": 39,
"restaurantId": 7,
"url": "https://picsum.photos/seed/restaurant-7-1/1200/800",
"alt": "Ortiz, Torp and Howell interior photo 2",
"caption": "Varius urbanus defessus contra censura bestia caute sit ager capitulus.",
"isPrimary": false,
"createdAt": "2026-04-11T17:06:18.953Z"
}