restaurant-photos / #57
- restaurantId
- Cruickshank - Jacobi · Vandervortfield · ★ 3.0
- url
- https://picsum.photos/seed/restaurant-10-3/1200/800
- alt
- Cruickshank - Jacobi interior photo 4
- caption
- Conduco subito astrum concedo umerus vorax suus sordeo amoveo.
- isPrimary
- false
- createdAt
Component variants
Medium
#57
#57
Small
restaurant-photos/57 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/57"
);
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/57"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/57"
)
restaurant_photo = res.json() {
"id": 57,
"restaurantId": 10,
"url": "https://picsum.photos/seed/restaurant-10-3/1200/800",
"alt": "Cruickshank - Jacobi interior photo 4",
"caption": "Conduco subito astrum concedo umerus vorax suus sordeo amoveo.",
"isPrimary": false,
"createdAt": "2025-12-24T19:49:43.681Z"
}