restaurant-photos / #220
- restaurantId
- Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
- url
- https://picsum.photos/seed/restaurant-38-7/1200/800
- alt
- Hartmann, Dach and Kub interior photo 8
- caption
- Cauda vallum voluptatem appono velit virga.
- isPrimary
- false
- createdAt
Component variants
Medium
#220
#220
Small
restaurant-photos/220 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/220"
);
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/220"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/220"
)
restaurant_photo = res.json() {
"id": 220,
"restaurantId": 38,
"url": "https://picsum.photos/seed/restaurant-38-7/1200/800",
"alt": "Hartmann, Dach and Kub interior photo 8",
"caption": "Cauda vallum voluptatem appono velit virga.",
"isPrimary": false,
"createdAt": "2024-11-11T09:22:03.458Z"
}