example-data.com

restaurant-photos

restaurant-photos

Page 6 of 10.

restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
url
https://picsum.photos/seed/restaurant-21-2/1200/800
alt
Effertz, Langworth and Walsh interior photo 3
caption
Temperantia admiratio audacia vere contra auditor absque atque baiulus torqueo.
isPrimary
false
createdAt
restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
url
https://picsum.photos/seed/restaurant-21-3/1200/800
alt
Effertz, Langworth and Walsh interior photo 4
caption
Vilicus demonstro complectus vir acerbitas.
isPrimary
false
createdAt
restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
url
https://picsum.photos/seed/restaurant-21-4/1200/800
alt
Effertz, Langworth and Walsh interior photo 5
caption
Admoveo voluptatem nulla turbo stillicidium vespillo.
isPrimary
false
createdAt
restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
url
https://picsum.photos/seed/restaurant-21-5/1200/800
alt
Effertz, Langworth and Walsh interior photo 6
caption
Cito alii est talio uterque adipisci nostrum.
isPrimary
false
createdAt
restaurantId
Effertz, Langworth and Walsh · Lake Maudiehaven · ★ 2.7
url
https://picsum.photos/seed/restaurant-21-6/1200/800
alt
Effertz, Langworth and Walsh interior photo 7
caption
Averto constans textus curiositas thermae.
isPrimary
false
createdAt
restaurantId
Mitchell, O'Kon and Kunde · South Janelle · ★ 3.2
url
https://picsum.photos/seed/restaurant-22-0/1200/800
alt
Mitchell, O'Kon and Kunde interior photo 1
caption
Cunae comptus sto truculenter armarium adhuc.
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": 121,
      "restaurantId": 21,
      "url": "https://picsum.photos/seed/restaurant-21-2/1200/800",
      "alt": "Effertz, Langworth and Walsh interior photo 3",
      "caption": "Temperantia admiratio audacia vere contra auditor absque atque baiulus torqueo.",
      "isPrimary": false,
      "createdAt": "2026-02-25T18:40:29.675Z"
    },
    {
      "id": 122,
      "restaurantId": 21,
      "url": "https://picsum.photos/seed/restaurant-21-3/1200/800",
      "alt": "Effertz, Langworth and Walsh interior photo 4",
      "caption": "Vilicus demonstro complectus vir acerbitas.",
      "isPrimary": false,
      "createdAt": "2024-08-25T01:55:06.165Z"
    },
    {
      "id": 123,
      "restaurantId": 21,
      "url": "https://picsum.photos/seed/restaurant-21-4/1200/800",
      "alt": "Effertz, Langworth and Walsh interior photo 5",
      "caption": "Admoveo voluptatem nulla turbo stillicidium vespillo.",
      "isPrimary": false,
      "createdAt": "2025-02-13T18:17:47.496Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 555,
    "totalPages": 24
  },
  "links": {
    "self": "/api/v1/restaurant-photos?page=6",
    "next": "/api/v1/restaurant-photos?page=7",
    "prev": "/api/v1/restaurant-photos?page=5"
  }
}
Draftbit