restaurant-photos
restaurant-photos
Page 6 of 24.
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/restaurant-photos?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/restaurant-photos.d.ts https://example-data.com/types/restaurant-photos.d.ts
import type { RestaurantPhoto, ListEnvelope } from "./types/restaurant-photos";
const res = await fetch(
"https://example-data.com/api/v1/restaurant-photos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<RestaurantPhoto>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/restaurant-photos",
params={"limit": 25},
)
data = res.json() Response
{
"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&limit=24",
"first": "/api/v1/restaurant-photos?page=1&limit=24",
"last": "/api/v1/restaurant-photos?page=24&limit=24",
"next": "/api/v1/restaurant-photos?page=7&limit=24",
"prev": "/api/v1/restaurant-photos?page=5&limit=24"
}
}