restaurant-photos / #126
- restaurantId
- Mitchell, O'Kon and Kunde · South Janelle · ★ 3.2
- url
- https://picsum.photos/seed/restaurant-22-0/1200/800
- alt
- Mitchell, O'Kon and Kunde interior photo 1
- caption
- Cunae comptus sto truculenter armarium adhuc.
- isPrimary
- true
- createdAt
Component variants
Medium
#126
#126
Small
restaurant-photos/126 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/126" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/126"
);
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/126"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/126"
)
restaurant_photo = res.json() {
"id": 126,
"restaurantId": 22,
"url": "https://picsum.photos/seed/restaurant-22-0/1200/800",
"alt": "Mitchell, O'Kon and Kunde interior photo 1",
"caption": "Cunae comptus sto truculenter armarium adhuc.",
"isPrimary": true,
"createdAt": "2024-05-30T03:21:37.457Z"
}