example-data.com

flashcards / #200

userId
Myrl Pollich @myrl.pollich
deckName
Spanish Verbs
front
Attero ut molestiae vitium mollitia
back
Traho consequuntur tondeo.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
9
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/200"
)
flashcard = res.json()
{
  "id": 200,
  "userId": 90,
  "deckName": "Spanish Verbs",
  "front": "Attero ut molestiae vitium mollitia",
  "back": "Traho consequuntur tondeo.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-04-11T00:00:00.000Z",
  "nextReviewAt": "2026-05-06T00:00:00.000Z",
  "reviewCount": 9,
  "createdAt": "2025-09-03T23:18:25.081Z"
}
Draftbit