flashcards / #239
- userId
-
Tabitha McKenzie @tabitha_mckenzie
- deckName
- Vocabulary
- front
- Vociferor nihil conventus cernuus possimus repudiandae
- back
- Cupressus caterva amoveo capto qui sequi in cogito.
- difficulty
- easy
- lastReviewedAt
- nextReviewAt
- reviewCount
- 3
- createdAt
Component variants
Medium
#239
#239
Small
flashcards/239 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/239"
);
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/239"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/239"
)
flashcard = res.json() {
"id": 239,
"userId": 98,
"deckName": "Vocabulary",
"front": "Vociferor nihil conventus cernuus possimus repudiandae",
"back": "Cupressus caterva amoveo capto qui sequi in cogito.",
"difficulty": "easy",
"lastReviewedAt": "2026-04-21T00:00:00.000Z",
"nextReviewAt": "2026-05-11T00:00:00.000Z",
"reviewCount": 3,
"createdAt": "2026-01-05T20:56:54.555Z"
}