example-data.com

flashcards / #163

userId
Bradford Doyle @bradford.doyle42
deckName
History Dates
front
Textilis aperte tepesco venustas
back
Undique auctus admiratio thorax thema magnam.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
18
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/163"
)
flashcard = res.json()
{
  "id": 163,
  "userId": 79,
  "deckName": "History Dates",
  "front": "Textilis aperte tepesco venustas",
  "back": "Undique auctus admiratio thorax thema magnam.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-14T00:00:00.000Z",
  "nextReviewAt": "2026-05-19T00:00:00.000Z",
  "reviewCount": 18,
  "createdAt": "2025-11-30T14:35:09.842Z"
}
Draftbit