Activity #1
User #1 favorited Book #207
5/18/2025, 4:37:52 PM
Overview
book-favs / #1
User #1 favorited Book #207
5/18/2025, 4:37:52 PM
User #1 favorited Book #207
5/18/2025, 4:37:52 PM
View recordUser #1 favorited Book #207 · 5/18/2025, 4:37:52 PM
Request
curl example
curl -sS \
"https://example-data.com/api/v1/book-favs/1" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/book-favs/1"
);
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/1"
);
const bookFav = (await res.json()) as BookFav;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/1"
)
book_fav = res.json()
Response
{
"id": 1,
"userId": 1,
"bookId": 207,
"savedAt": "2025-05-18T16:37:52.930Z"
}