flashcards / #143
- userId
-
Ryan Conroy @ryan_conroy
- deckName
- Vocabulary
- front
- Sono amicitia quisquam vir alienus thermae
- back
- Aestivus ars carmen.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 11
- createdAt
Component variants
Medium
#143
#143
Small
flashcards/143 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/143" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/143"
);
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/143"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/143"
)
flashcard = res.json() {
"id": 143,
"userId": 73,
"deckName": "Vocabulary",
"front": "Sono amicitia quisquam vir alienus thermae",
"back": "Aestivus ars carmen.",
"difficulty": "hard",
"lastReviewedAt": "2026-05-01T00:00:00.000Z",
"nextReviewAt": "2026-05-30T00:00:00.000Z",
"reviewCount": 11,
"createdAt": "2025-10-28T05:10:26.447Z"
}