Activity #125
User #63 favorited Book #43
8/24/2025, 11:15:08 AM
Overview
book-favs / #125
User #63 favorited Book #43
8/24/2025, 11:15:08 AM
User #63 favorited Book #43
8/24/2025, 11:15:08 AM
View recordUser #63 favorited Book #43 · 8/24/2025, 11:15:08 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/125" ); 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/125"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/125"
)
book_fav = res.json() Response
{
"id": 125,
"userId": 63,
"bookId": 43,
"savedAt": "2025-08-24T11:15:08.910Z"
}