restaurant-photos #537
- restaurantId
- Thiel and Sons · Shyanneville · ★ 4.0
- url
- https://picsum.photos/seed/restaurant-97-3/1200/800
- alt
- Thiel and Sons interior photo 4
- caption
- Cribro doloremque cedo atrox.
- isPrimary
- false
- createdAt
Overview
restaurant-photos / #537
#537
#537
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurant-photos/537" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/restaurant-photos/537" ); const restaurantPhoto = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/restaurant-photos.d.ts https://example-data.com/types/restaurant-photos.d.ts
import type { RestaurantPhoto } from "./types/restaurant-photos";
const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos/537"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos/537"
)
restaurant_photo = res.json() Response
{
"id": 537,
"restaurantId": 97,
"url": "https://picsum.photos/seed/restaurant-97-3/1200/800",
"alt": "Thiel and Sons interior photo 4",
"caption": "Cribro doloremque cedo atrox.",
"isPrimary": false,
"createdAt": "2025-01-01T13:24:58.361Z"
}