Activity #317
User #196 favorited Book #230
6/4/2025, 11:00:10 PM
Overview
book-favs / #317
User #196 favorited Book #230
6/4/2025, 11:00:10 PM
User #196 favorited Book #230
6/4/2025, 11:00:10 PM
View recordUser #196 favorited Book #230 · 6/4/2025, 11:00:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/317" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/317" ); 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/317"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/317"
)
book_fav = res.json() Response
{
"id": 317,
"userId": 196,
"bookId": 230,
"savedAt": "2025-06-04T23:00:10.721Z"
}