example-data.com

restaurant-photos

restaurant-photos

Page 4 of 10.

restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
url
https://picsum.photos/seed/restaurant-13-2/1200/800
alt
Greenfelder LLC interior photo 3
caption
Asperiores depulso tonsor voluptate totam vilis ultra peccatus vulgo.
isPrimary
false
createdAt
restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
url
https://picsum.photos/seed/restaurant-13-3/1200/800
alt
Greenfelder LLC interior photo 4
caption
Capillus officiis odit speculum voluptate terminatio.
isPrimary
false
createdAt
restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
url
https://picsum.photos/seed/restaurant-13-4/1200/800
alt
Greenfelder LLC interior photo 5
caption
Credo tui subnecto curvo trucido cicuta inventore in sunt decipio.
isPrimary
false
createdAt
restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
url
https://picsum.photos/seed/restaurant-13-5/1200/800
alt
Greenfelder LLC interior photo 6
caption
Ventosus demonstro asper aro angulus atqui vix tibi damno audax.
isPrimary
false
createdAt
restaurantId
Greenfelder LLC · Jaydentown · ★ 3.2
url
https://picsum.photos/seed/restaurant-13-6/1200/800
alt
Greenfelder LLC interior photo 7
caption
Tergiversatio crapula vulgo culpo attollo.
isPrimary
false
createdAt
restaurantId
Vandervort, Bogisich and Hilll · Lake Gino · ★ 4.3
url
https://picsum.photos/seed/restaurant-14-0/1200/800
alt
Vandervort, Bogisich and Hilll interior photo 1
caption
Cedo caput acerbitas eum admoneo vinum crur attonbitus.
isPrimary
true
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": 73,
      "restaurantId": 13,
      "url": "https://picsum.photos/seed/restaurant-13-2/1200/800",
      "alt": "Greenfelder LLC interior photo 3",
      "caption": "Asperiores depulso tonsor voluptate totam vilis ultra peccatus vulgo.",
      "isPrimary": false,
      "createdAt": "2025-08-28T09:13:05.787Z"
    },
    {
      "id": 74,
      "restaurantId": 13,
      "url": "https://picsum.photos/seed/restaurant-13-3/1200/800",
      "alt": "Greenfelder LLC interior photo 4",
      "caption": "Capillus officiis odit speculum voluptate terminatio.",
      "isPrimary": false,
      "createdAt": "2024-08-16T11:14:03.418Z"
    },
    {
      "id": 75,
      "restaurantId": 13,
      "url": "https://picsum.photos/seed/restaurant-13-4/1200/800",
      "alt": "Greenfelder LLC interior photo 5",
      "caption": "Credo tui subnecto curvo trucido cicuta inventore in sunt decipio.",
      "isPrimary": false,
      "createdAt": "2025-03-11T17:20:52.308Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 555,
    "totalPages": 24
  },
  "links": {
    "self": "/api/v1/restaurant-photos?page=4",
    "next": "/api/v1/restaurant-photos?page=5",
    "prev": "/api/v1/restaurant-photos?page=3"
  }
}
Draftbit