example-data.com

restaurant-photos

restaurant-photos

Page 10 of 10.

restaurantId
Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
url
https://picsum.photos/seed/restaurant-38-4/1200/800
alt
Hartmann, Dach and Kub interior photo 5
caption
Ipsum terra brevis sublime amitto victus.
isPrimary
false
createdAt
restaurantId
Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
url
https://picsum.photos/seed/restaurant-38-5/1200/800
alt
Hartmann, Dach and Kub interior photo 6
caption
Civitas tribuo bene traho.
isPrimary
false
createdAt
restaurantId
Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
url
https://picsum.photos/seed/restaurant-38-6/1200/800
alt
Hartmann, Dach and Kub interior photo 7
caption
Molestiae subito voluptas cuppedia versus umerus aeneus auctus concido.
isPrimary
false
createdAt
restaurantId
Hartmann, Dach and Kub · Gusikowskifield · ★ 4.2
url
https://picsum.photos/seed/restaurant-38-7/1200/800
alt
Hartmann, Dach and Kub interior photo 8
caption
Cauda vallum voluptatem appono velit virga.
isPrimary
false
createdAt
restaurantId
Stroman - Wolf · Hoboken · ★ 3.7
url
https://picsum.photos/seed/restaurant-39-0/1200/800
alt
Stroman - Wolf interior photo 1
caption
Templum pax sed eligendi subvenio delinquo amissio.
isPrimary
true
createdAt
restaurantId
Stroman - Wolf · Hoboken · ★ 3.7
url
https://picsum.photos/seed/restaurant-39-1/1200/800
alt
Stroman - Wolf interior photo 2
caption
Vociferor caritas laudantium valde crastinus aestivus vesica aequitas deinde aegrotatio.
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": 217,
      "restaurantId": 38,
      "url": "https://picsum.photos/seed/restaurant-38-4/1200/800",
      "alt": "Hartmann, Dach and Kub interior photo 5",
      "caption": "Ipsum terra brevis sublime amitto victus.",
      "isPrimary": false,
      "createdAt": "2025-10-19T11:45:06.790Z"
    },
    {
      "id": 218,
      "restaurantId": 38,
      "url": "https://picsum.photos/seed/restaurant-38-5/1200/800",
      "alt": "Hartmann, Dach and Kub interior photo 6",
      "caption": "Civitas tribuo bene traho.",
      "isPrimary": false,
      "createdAt": "2024-07-04T20:13:52.718Z"
    },
    {
      "id": 219,
      "restaurantId": 38,
      "url": "https://picsum.photos/seed/restaurant-38-6/1200/800",
      "alt": "Hartmann, Dach and Kub interior photo 7",
      "caption": "Molestiae subito voluptas cuppedia versus umerus aeneus auctus concido.",
      "isPrimary": false,
      "createdAt": "2025-03-02T18:31:24.995Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 555,
    "totalPages": 24
  },
  "links": {
    "self": "/api/v1/restaurant-photos?page=10",
    "next": "/api/v1/restaurant-photos?page=11",
    "prev": "/api/v1/restaurant-photos?page=9"
  }
}
Draftbit