flashcards / #135
- userId
-
Lamont Huel @lamont.huel
- deckName
- Vocabulary
- front
- Bene antiquus bis patruus
- back
- Creptio varietas caritas vomer.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 13
- createdAt
Component variants
Medium
#135
#135
Small
flashcards/135 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/135"
);
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/135"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/135"
)
flashcard = res.json() {
"id": 135,
"userId": 69,
"deckName": "Vocabulary",
"front": "Bene antiquus bis patruus",
"back": "Creptio varietas caritas vomer.",
"difficulty": "hard",
"lastReviewedAt": "2026-04-28T00:00:00.000Z",
"nextReviewAt": "2026-05-12T00:00:00.000Z",
"reviewCount": 13,
"createdAt": "2025-09-05T17:47:27.744Z"
}