example-data.com

flashcards / #228

userId
Camron O'Conner @camron.oconner54
deckName
Math Basics
front
Amaritudo solus derideo clam substantia thymum vaco tui
back
Molestias vivo suppellex advoco decor amplus cauda tamdiu timidus depereo.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
8
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/228"
)
flashcard = res.json()
{
  "id": 228,
  "userId": 94,
  "deckName": "Math Basics",
  "front": "Amaritudo solus derideo clam substantia thymum vaco tui",
  "back": "Molestias vivo suppellex advoco decor amplus cauda tamdiu timidus depereo.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-05T00:00:00.000Z",
  "nextReviewAt": "2026-05-31T00:00:00.000Z",
  "reviewCount": 8,
  "createdAt": "2025-06-26T13:03:03.961Z"
}
Draftbit