example-data.com
Menu
Browse docs and collections

Overview

restaurant-photos / #1

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/restaurant-photos/1" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/restaurant-photos/1"
);
const restaurantPhoto = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/restaurant-photos.d.ts https://example-data.com/types/restaurant-photos.d.ts
import type { RestaurantPhoto } from "./types/restaurant-photos";

const res = await fetch(
  "https://example-data.com/api/v1/restaurant-photos/1"
);
const restaurantPhoto = (await res.json()) as RestaurantPhoto;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos/1"
)
restaurant_photo = res.json()

Response

{
  "id": 1,
  "restaurantId": 1,
  "url": "https://picsum.photos/seed/restaurant-1-0/1200/800",
  "alt": "O'Hara and Sons interior photo 1",
  "caption": "Cuius ipsam turpis compello tyrannus contego astrum vinitor spero.",
  "isPrimary": true,
  "createdAt": "2025-07-18T05:21:16.975Z"
}