flashcards / #184
- userId
-
Phyllis Hyatt @phyllis_hyatt83
- deckName
- Algorithms
- front
- Coaegresco denuncio saepe doloribus sumo
- back
- In bellicus tripudio.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 18
- createdAt
Component variants
Medium
#184
#184
Small
flashcards/184 Related
References
curl -sS \
"https://example-data.com/api/v1/flashcards/184" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/flashcards/184"
);
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/184"
);
const flashcard = (await res.json()) as Flashcard;import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/184"
)
flashcard = res.json() {
"id": 184,
"userId": 84,
"deckName": "Algorithms",
"front": "Coaegresco denuncio saepe doloribus sumo",
"back": "In bellicus tripudio.",
"difficulty": "hard",
"lastReviewedAt": "2026-04-16T00:00:00.000Z",
"nextReviewAt": "2026-04-19T00:00:00.000Z",
"reviewCount": 18,
"createdAt": "2025-06-24T14:12:39.152Z"
}