Activity #370
User #231 favorited Book #162
2/26/2026, 10:48:36 PM
Overview
book-favs / #370
User #231 favorited Book #162
2/26/2026, 10:48:36 PM
User #231 favorited Book #162
2/26/2026, 10:48:36 PM
View recordUser #231 favorited Book #162 · 2/26/2026, 10:48:36 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/370" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/370" ); 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/370"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/370"
)
book_fav = res.json() Response
{
"id": 370,
"userId": 231,
"bookId": 162,
"savedAt": "2026-02-26T22:48:36.912Z"
}