book-favs
book-favs
Page 17 of 17.
Overview
-
User #241 favorited Book #158
8/3/2025, 3:22:37 PM
View record -
User #243 favorited Book #49
11/3/2024, 5:56:21 AM
View record -
User #243 favorited Book #135
9/11/2024, 1:40:01 PM
View record -
User #243 favorited Book #185
2/15/2026, 6:56:38 AM
View record -
User #244 favorited Book #81
2/5/2026, 1:37:08 AM
View record -
User #244 favorited Book #129
12/6/2024, 11:48:13 PM
View record -
User #247 favorited Book #172
2/26/2026, 6:45:00 AM
View record
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/book-favs?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/book-favs.d.ts https://example-data.com/types/book-favs.d.ts
import type { BookFav, ListEnvelope } from "./types/book-favs";
const res = await fetch(
"https://example-data.com/api/v1/book-favs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<BookFav>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 385,
"userId": 241,
"bookId": 158,
"savedAt": "2025-08-03T15:22:37.708Z"
},
{
"id": 386,
"userId": 243,
"bookId": 49,
"savedAt": "2024-11-03T05:56:21.681Z"
},
{
"id": 387,
"userId": 243,
"bookId": 135,
"savedAt": "2024-09-11T13:40:01.492Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 391,
"totalPages": 17
},
"links": {
"self": "/api/v1/book-favs?page=17&limit=24",
"first": "/api/v1/book-favs?page=1&limit=24",
"last": "/api/v1/book-favs?page=17&limit=24",
"next": null,
"prev": "/api/v1/book-favs?page=16&limit=24"
}
}