example-data.com

restaurant-photos / #209

restaurantId
Cummings and Sons · Rodriguezville · ★ 3.5
url
https://picsum.photos/seed/restaurant-37-2/1200/800
alt
Cummings and Sons interior photo 3
caption
Ars laborum abstergo creptio quas coepi tondeo.
isPrimary
false
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/209"
)
restaurant_photo = res.json()
{
  "id": 209,
  "restaurantId": 37,
  "url": "https://picsum.photos/seed/restaurant-37-2/1200/800",
  "alt": "Cummings and Sons interior photo 3",
  "caption": "Ars laborum abstergo creptio quas coepi tondeo.",
  "isPrimary": false,
  "createdAt": "2024-07-01T15:29:44.287Z"
}
Draftbit