example-data.com

restaurant-photos / #13

restaurantId
Robel, Walter and Davis · Honolulu · ★ 4.4
url
https://picsum.photos/seed/restaurant-2-6/1200/800
alt
Robel, Walter and Davis interior photo 7
caption
Tantum amet ceno sollicito magnam terebro.
isPrimary
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/13"
)
restaurant_photo = res.json()
{
  "id": 13,
  "restaurantId": 2,
  "url": "https://picsum.photos/seed/restaurant-2-6/1200/800",
  "alt": "Robel, Walter and Davis interior photo 7",
  "caption": "Tantum amet ceno sollicito magnam terebro.",
  "isPrimary": false,
  "createdAt": "2025-03-29T15:36:34.566Z"
}
Draftbit