flashcards / #214
- userId
-
Ruben Terry @ruben.terry
- deckName
- Anatomy
- front
- Volva calcar debilito cibo aestivus nemo
- back
- Verecundia acceptus audentia caveo sordeo.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 2
- createdAt
Component variants
Medium
#214
#214
Small
flashcards/214 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/214"
);
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/214"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/214"
)
flashcard = res.json() {
"id": 214,
"userId": 91,
"deckName": "Anatomy",
"front": "Volva calcar debilito cibo aestivus nemo",
"back": "Verecundia acceptus audentia caveo sordeo.",
"difficulty": "hard",
"lastReviewedAt": "2026-03-27T00:00:00.000Z",
"nextReviewAt": "2026-03-30T00:00:00.000Z",
"reviewCount": 2,
"createdAt": "2025-06-19T04:24:43.721Z"
}