Activity #275
User #164 favorited Book #88
1/18/2026, 10:27:55 AM
Overview
book-favs / #275
User #164 favorited Book #88
1/18/2026, 10:27:55 AM
User #164 favorited Book #88
1/18/2026, 10:27:55 AM
View recordUser #164 favorited Book #88 · 1/18/2026, 10:27:55 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/275" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/275" ); const bookFav = 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 } from "./types/book-favs";
const res = await fetch(
"https://example-data.com/api/v1/book-favs/275"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/275"
)
book_fav = res.json() Response
{
"id": 275,
"userId": 164,
"bookId": 88,
"savedAt": "2026-01-18T10:27:55.923Z"
}