example-data.com

restaurant-photos

restaurant-photos

Page 9 of 10.

restaurantId
D'Amore, Quitzon and Satterfield · Bruenberg · ★ 4.6
url
https://picsum.photos/seed/restaurant-34-3/1200/800
alt
D'Amore, Quitzon and Satterfield interior photo 4
caption
Curia adficio denuncio sub depraedor ager.
isPrimary
false
createdAt
restaurantId
D'Amore, Quitzon and Satterfield · Bruenberg · ★ 4.6
url
https://picsum.photos/seed/restaurant-34-4/1200/800
alt
D'Amore, Quitzon and Satterfield interior photo 5
caption
Blanditiis apparatus articulus accendo.
isPrimary
false
createdAt
restaurantId
D'Amore, Quitzon and Satterfield · Bruenberg · ★ 4.6
url
https://picsum.photos/seed/restaurant-34-5/1200/800
alt
D'Amore, Quitzon and Satterfield interior photo 6
caption
Confido voveo ceno accusantium.
isPrimary
false
createdAt
restaurantId
D'Amore, Quitzon and Satterfield · Bruenberg · ★ 4.6
url
https://picsum.photos/seed/restaurant-34-6/1200/800
alt
D'Amore, Quitzon and Satterfield interior photo 7
caption
Aperio aeneus tres in rerum quod cinis provident tremo.
isPrimary
false
createdAt
restaurantId
Larson Group · Lehnerville · ★ 2.9
url
https://picsum.photos/seed/restaurant-35-0/1200/800
alt
Larson Group interior photo 1
caption
Deputo verus utilis vivo usitas.
isPrimary
true
createdAt
restaurantId
Larson Group · Lehnerville · ★ 2.9
url
https://picsum.photos/seed/restaurant-35-1/1200/800
alt
Larson Group interior photo 2
caption
Tyrannus harum officiis derelinquo corpus officia cernuus contego.
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": 193,
      "restaurantId": 34,
      "url": "https://picsum.photos/seed/restaurant-34-3/1200/800",
      "alt": "D'Amore, Quitzon and Satterfield interior photo 4",
      "caption": "Curia adficio denuncio sub depraedor ager.",
      "isPrimary": false,
      "createdAt": "2025-11-01T16:12:59.118Z"
    },
    {
      "id": 194,
      "restaurantId": 34,
      "url": "https://picsum.photos/seed/restaurant-34-4/1200/800",
      "alt": "D'Amore, Quitzon and Satterfield interior photo 5",
      "caption": "Blanditiis apparatus articulus accendo.",
      "isPrimary": false,
      "createdAt": "2026-01-30T19:39:45.939Z"
    },
    {
      "id": 195,
      "restaurantId": 34,
      "url": "https://picsum.photos/seed/restaurant-34-5/1200/800",
      "alt": "D'Amore, Quitzon and Satterfield interior photo 6",
      "caption": "Confido voveo ceno accusantium.",
      "isPrimary": false,
      "createdAt": "2025-02-21T20:10:16.296Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 555,
    "totalPages": 24
  },
  "links": {
    "self": "/api/v1/restaurant-photos?page=9",
    "next": "/api/v1/restaurant-photos?page=10",
    "prev": "/api/v1/restaurant-photos?page=8"
  }
}
Draftbit