example-data.com

restaurant-photos / #140

restaurantId
Schowalter - McKenzie · Great Falls · ★ 3.7
url
https://picsum.photos/seed/restaurant-25-3/1200/800
alt
Schowalter - McKenzie interior photo 4
caption
Vitae adimpleo accusator canto ullam.
isPrimary
false
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurant-photos/140" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurant-photos/140"
);
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/140"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/140"
)
restaurant_photo = res.json()
{
  "id": 140,
  "restaurantId": 25,
  "url": "https://picsum.photos/seed/restaurant-25-3/1200/800",
  "alt": "Schowalter - McKenzie interior photo 4",
  "caption": "Vitae adimpleo accusator canto ullam.",
  "isPrimary": false,
  "createdAt": "2025-12-13T18:40:20.600Z"
}
Draftbit