restaurant-photos / #173
- restaurantId
- Mills, Kassulke and Marquardt · Jeffersonville · ★ 3.6
- url
- https://picsum.photos/seed/restaurant-30-2/1200/800
- alt
- Mills, Kassulke and Marquardt interior photo 3
- caption
- Odio velociter ultio aperio vomica atque amplus denuncio recusandae deludo.
- isPrimary
- false
- createdAt
Component variants
Medium
#173
#173
Small
restaurant-photos/173 Related
curl -sS \
"https://example-data.com/api/v1/restaurant-photos/173" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/173"
);
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/173"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/173"
)
restaurant_photo = res.json() {
"id": 173,
"restaurantId": 30,
"url": "https://picsum.photos/seed/restaurant-30-2/1200/800",
"alt": "Mills, Kassulke and Marquardt interior photo 3",
"caption": "Odio velociter ultio aperio vomica atque amplus denuncio recusandae deludo.",
"isPrimary": false,
"createdAt": "2025-01-16T12:57:00.104Z"
}