example-data.com

flashcards / #67

userId
Melvina Reilly @melvina_reilly83
deckName
Vocabulary
front
Astrum capio decet maiores vapulus
back
Ara ver tempus nobis careo accusator bestia thymbra sodalitas volo deporto tam.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
17
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/67"
)
flashcard = res.json()
{
  "id": 67,
  "userId": 26,
  "deckName": "Vocabulary",
  "front": "Astrum capio decet maiores vapulus",
  "back": "Ara ver tempus nobis careo accusator bestia thymbra sodalitas volo deporto tam.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-06T00:00:00.000Z",
  "nextReviewAt": "2026-05-27T00:00:00.000Z",
  "reviewCount": 17,
  "createdAt": "2026-02-05T22:30:11.409Z"
}
Draftbit