example-data.com

flashcards / #146

userId
Ryan Conroy @ryan_conroy
deckName
Vocabulary
front
Trepide calamitas candidus paulatim
back
Tempore commodi cresco tremo.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
20
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/146"
)
flashcard = res.json()
{
  "id": 146,
  "userId": 73,
  "deckName": "Vocabulary",
  "front": "Trepide calamitas candidus paulatim",
  "back": "Tempore commodi cresco tremo.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-03-27T00:00:00.000Z",
  "nextReviewAt": "2026-04-26T00:00:00.000Z",
  "reviewCount": 20,
  "createdAt": "2025-07-05T23:15:59.828Z"
}
Draftbit