example-data.com

flashcards / #33

userId
Jaycee Erdman @jaycee_erdman96
deckName
Spanish Verbs
front
Utor videlicet territo venia
back
Degenero debitis volo natus arguo capto.
difficulty
easy
lastReviewedAt
nextReviewAt
reviewCount
23
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/flashcards/33"
)
flashcard = res.json()
{
  "id": 33,
  "userId": 10,
  "deckName": "Spanish Verbs",
  "front": "Utor videlicet territo venia",
  "back": "Degenero debitis volo natus arguo capto.",
  "difficulty": "easy",
  "lastReviewedAt": "2026-04-22T00:00:00.000Z",
  "nextReviewAt": "2026-05-17T00:00:00.000Z",
  "reviewCount": 23,
  "createdAt": "2025-08-06T11:08:17.160Z"
}
Draftbit