example-data.com

flashcards / #186

userId
Phyllis Hyatt @phyllis_hyatt83
deckName
Algorithms
front
Iure vado atrox reiciendis
back
Attonbitus desolo temptatio.
difficulty
easy
lastReviewedAt
nextReviewAt
reviewCount
14
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/186"
)
flashcard = res.json()
{
  "id": 186,
  "userId": 84,
  "deckName": "Algorithms",
  "front": "Iure vado atrox reiciendis",
  "back": "Attonbitus desolo temptatio.",
  "difficulty": "easy",
  "lastReviewedAt": "2026-05-08T00:00:00.000Z",
  "nextReviewAt": "2026-05-24T00:00:00.000Z",
  "reviewCount": 14,
  "createdAt": "2025-09-25T18:53:39.003Z"
}
Draftbit