example-data.com

restaurant-photos / #10

restaurantId
Robel, Walter and Davis · Honolulu · ★ 4.4
url
https://picsum.photos/seed/restaurant-2-3/1200/800
alt
Robel, Walter and Davis interior photo 4
caption
A excepturi aedificium commodi ascit cervus spoliatio socius ocer possimus.
isPrimary
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/10"
)
restaurant_photo = res.json()
{
  "id": 10,
  "restaurantId": 2,
  "url": "https://picsum.photos/seed/restaurant-2-3/1200/800",
  "alt": "Robel, Walter and Davis interior photo 4",
  "caption": "A excepturi aedificium commodi ascit cervus spoliatio socius ocer possimus.",
  "isPrimary": false,
  "createdAt": "2025-02-08T04:47:50.391Z"
}
Draftbit