flashcards / #3
- userId
-
Webster Skiles @webster_skiles39
- deckName
- History Dates
- front
- Caput supra denuncio succurro adulatio
- back
- Appello magnam totam verbum spes voluptates.
- difficulty
- medium
- lastReviewedAt
- —
- nextReviewAt
- —
- reviewCount
- 0
- createdAt
Component variants
Medium
#3
#3
Small
flashcards/3 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/3"
);
const flashcard = await res.json();import type { Flashcard } from "https://example-data.com/types/flashcards.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/flashcards/3"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/3"
)
flashcard = res.json() {
"id": 3,
"userId": 5,
"deckName": "History Dates",
"front": "Caput supra denuncio succurro adulatio",
"back": "Appello magnam totam verbum spes voluptates.",
"difficulty": "medium",
"lastReviewedAt": null,
"nextReviewAt": null,
"reviewCount": 0,
"createdAt": "2025-08-10T11:51:53.868Z"
}