example-data.com

restaurant-photos / #142

restaurantId
Schowalter - McKenzie · Great Falls · ★ 3.7
url
https://picsum.photos/seed/restaurant-25-5/1200/800
alt
Schowalter - McKenzie interior photo 6
caption
Cupio sui templum atrox vicissitudo adinventitias utrimque.
isPrimary
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/142"
)
restaurant_photo = res.json()
{
  "id": 142,
  "restaurantId": 25,
  "url": "https://picsum.photos/seed/restaurant-25-5/1200/800",
  "alt": "Schowalter - McKenzie interior photo 6",
  "caption": "Cupio sui templum atrox vicissitudo adinventitias utrimque.",
  "isPrimary": false,
  "createdAt": "2025-10-01T09:13:40.732Z"
}
Draftbit