Activity #267
User #158 favorited Book #149
7/2/2024, 10:30:32 AM
Overview
book-favs / #267
User #158 favorited Book #149
7/2/2024, 10:30:32 AM
User #158 favorited Book #149
7/2/2024, 10:30:32 AM
View recordUser #158 favorited Book #149 · 7/2/2024, 10:30:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/book-favs/267" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/book-favs/267" ); 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/267"
);
const bookFav = (await res.json()) as BookFav; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/book-favs/267"
)
book_fav = res.json() Response
{
"id": 267,
"userId": 158,
"bookId": 149,
"savedAt": "2024-07-02T10:30:32.686Z"
}