Activity #329
User #200 favorited Book #122
3/10/2026, 4:07:08 AM
Overview
book-favs / #329
User #200 favorited Book #122
3/10/2026, 4:07:08 AM
User #200 favorited Book #122
3/10/2026, 4:07:08 AM
View recordUser #200 favorited Book #122 · 3/10/2026, 4:07:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/329" ); 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/329"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/329"
)
book_fav = res.json() Response
{
"id": 329,
"userId": 200,
"bookId": 122,
"savedAt": "2026-03-10T04:07:08.388Z"
}