flashcards #288
- userId
-
Nikko Kuhlman @nikko_kuhlman
- deckName
- Science Concepts
- front
- Defessus depopulo molestiae coepi
- back
- Id averto adeptio pauci bis tametsi tabula.
- difficulty
- medium
- lastReviewedAt
- nextReviewAt
- reviewCount
- 6
- createdAt
Overview
flashcards / #288
#288
#288
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/288" ); const flashcard = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flashcards.d.ts https://example-data.com/types/flashcards.d.ts
import type { Flashcard } from "./types/flashcards";
const res = await fetch(
"https://example-data.com/api/v1/flashcards/288"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/288"
)
flashcard = res.json() Response
{
"id": 288,
"userId": 122,
"deckName": "Science Concepts",
"front": "Defessus depopulo molestiae coepi",
"back": "Id averto adeptio pauci bis tametsi tabula.",
"difficulty": "medium",
"lastReviewedAt": "2026-04-12T00:00:00.000Z",
"nextReviewAt": "2026-04-14T00:00:00.000Z",
"reviewCount": 6,
"createdAt": "2025-05-25T13:43:47.332Z"
}