example-data.com

flashcards / #221

userId
Velma Jerde @velma.jerde56
deckName
Math Basics
front
Decor arca fuga
back
Theca dolores abscido templum maxime thesis.
difficulty
easy
lastReviewedAt
nextReviewAt
reviewCount
2
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/221"
)
flashcard = res.json()
{
  "id": 221,
  "userId": 93,
  "deckName": "Math Basics",
  "front": "Decor arca fuga",
  "back": "Theca dolores abscido templum maxime thesis.",
  "difficulty": "easy",
  "lastReviewedAt": "2026-03-31T00:00:00.000Z",
  "nextReviewAt": "2026-04-26T00:00:00.000Z",
  "reviewCount": 2,
  "createdAt": "2025-11-23T04:46:22.145Z"
}
Draftbit