example-data.com

restaurant-photos / #151

restaurantId
Mohr, Treutel and Watsica · East Felipa · ★ 4.6
url
https://picsum.photos/seed/restaurant-27-0/1200/800
alt
Mohr, Treutel and Watsica interior photo 1
caption
Cribro vallum venia attollo adduco natus thermae administratio calamitas vitium.
isPrimary
true
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/151"
)
restaurant_photo = res.json()
{
  "id": 151,
  "restaurantId": 27,
  "url": "https://picsum.photos/seed/restaurant-27-0/1200/800",
  "alt": "Mohr, Treutel and Watsica interior photo 1",
  "caption": "Cribro vallum venia attollo adduco natus thermae administratio calamitas vitium.",
  "isPrimary": true,
  "createdAt": "2024-07-14T17:01:34.027Z"
}
Draftbit