example-data.com

flashcards / #240

userId
Tabitha McKenzie @tabitha_mckenzie
deckName
Vocabulary
front
Coerceo verbera tantum arbor
back
Sub aegrus aegre verus ventus aliquid voluntarius vicissitudo thalassinus cornu.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
10
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/flashcards/240" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/flashcards/240"
);
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/240"
);
const flashcard = (await res.json()) as Flashcard;
import requests

res = requests.get(
    "https://example-data.com/api/v1/flashcards/240"
)
flashcard = res.json()
{
  "id": 240,
  "userId": 98,
  "deckName": "Vocabulary",
  "front": "Coerceo verbera tantum arbor",
  "back": "Sub aegrus aegre verus ventus aliquid voluntarius vicissitudo thalassinus cornu.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-08T00:00:00.000Z",
  "nextReviewAt": "2026-05-25T00:00:00.000Z",
  "reviewCount": 10,
  "createdAt": "2026-05-19T20:05:25.063Z"
}
Draftbit