example-data.com

restaurant-photos

restaurant-photos

Browse 555 restaurant-photos records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
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
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
url
https://picsum.photos/seed/restaurant-1-1/1200/800
alt
O'Hara and Sons interior photo 2
caption
Cognatus ad verecundia causa delinquo vereor labore.
isPrimary
false
createdAt
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
url
https://picsum.photos/seed/restaurant-1-2/1200/800
alt
O'Hara and Sons interior photo 3
caption
Ipsam decerno annus ultra magni consectetur adhaero.
isPrimary
false
createdAt
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
url
https://picsum.photos/seed/restaurant-1-3/1200/800
alt
O'Hara and Sons interior photo 4
caption
Vulariter adnuo vestrum ater eum.
isPrimary
false
createdAt
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
url
https://picsum.photos/seed/restaurant-1-4/1200/800
alt
O'Hara and Sons interior photo 5
caption
Confero perspiciatis error angulus.
isPrimary
false
createdAt
restaurantId
O'Hara and Sons · New Eloisaboro · ★ 4.4
url
https://picsum.photos/seed/restaurant-1-5/1200/800
alt
O'Hara and Sons interior photo 6
caption
Cibo sunt solutio cresco decipio tremo.
isPrimary
false
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/restaurant-photos?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/restaurant-photos?limit=25"
);
const { data, meta } = await res.json();
import type { RestaurantPhoto, ListEnvelope } from "https://example-data.com/types/restaurant-photos.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/restaurant-photos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<RestaurantPhoto>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurant-photos",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "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"
    },
    {
      "id": 2,
      "restaurantId": 1,
      "url": "https://picsum.photos/seed/restaurant-1-1/1200/800",
      "alt": "O'Hara and Sons interior photo 2",
      "caption": "Cognatus ad verecundia causa delinquo vereor labore.",
      "isPrimary": false,
      "createdAt": "2025-01-26T17:11:47.673Z"
    },
    {
      "id": 3,
      "restaurantId": 1,
      "url": "https://picsum.photos/seed/restaurant-1-2/1200/800",
      "alt": "O'Hara and Sons interior photo 3",
      "caption": "Ipsam decerno annus ultra magni consectetur adhaero.",
      "isPrimary": false,
      "createdAt": "2025-03-19T10:10:35.067Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 555,
    "totalPages": 23
  },
  "links": {
    "self": "/api/v1/restaurant-photos?page=1",
    "first": "/api/v1/restaurant-photos?page=1",
    "last": "/api/v1/restaurant-photos?page=23",
    "next": "/api/v1/restaurant-photos?page=2",
    "prev": null
  }
}

View full response →

Draftbit