restaurant-photos
restaurant-photos
Page 22 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": 505,
"restaurantId": 92,
"url": "https://picsum.photos/seed/restaurant-92-5/1200/800",
"alt": "Klocko, Gusikowski and Lockman interior photo 6",
"caption": "Decor aggero armarium deserunt acervus deleo conspergo dolor colo beneficium.",
"isPrimary": false,
"createdAt": "2025-03-25T20:08:17.025Z"
},
{
"id": 506,
"restaurantId": 92,
"url": "https://picsum.photos/seed/restaurant-92-6/1200/800",
"alt": "Klocko, Gusikowski and Lockman interior photo 7",
"caption": "Cupressus voluptates autem eveniet adnuo.",
"isPrimary": false,
"createdAt": "2025-11-29T14:53:31.264Z"
},
{
"id": 507,
"restaurantId": 92,
"url": "https://picsum.photos/seed/restaurant-92-7/1200/800",
"alt": "Klocko, Gusikowski and Lockman interior photo 8",
"caption": "Angustus mollitia nobis utique patruus caries utique dolore aiunt depromo.",
"isPrimary": false,
"createdAt": "2024-11-06T01:48:46.552Z"
}
],
"meta": {
"page": 22,
"limit": 24,
"total": 555,
"totalPages": 24
},
"links": {
"self": "/api/v1/restaurant-photos?page=22&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=23&limit=24",
"prev": "/api/v1/restaurant-photos?page=21&limit=24"
}
}