flashcards #274
- userId
-
Arnaldo Friesen @arnaldo_friesen78
- deckName
- Math Basics
- front
- Aegrus totidem tego textor undique decimus tamen
- back
- Cogo deleniti deficio.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 24
- createdAt
Overview
flashcards / #274
#274
#274
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/274" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/274" ); const flashcard = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/flashcards.d.ts https://example-data.com/types/flashcards.d.ts
import type { Flashcard } from "./types/flashcards";
const res = await fetch(
"https://example-data.com/api/v1/flashcards/274"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/274"
)
flashcard = res.json() Response
{
"id": 274,
"userId": 113,
"deckName": "Math Basics",
"front": "Aegrus totidem tego textor undique decimus tamen",
"back": "Cogo deleniti deficio.",
"difficulty": "hard",
"lastReviewedAt": "2026-03-25T00:00:00.000Z",
"nextReviewAt": "2026-03-31T00:00:00.000Z",
"reviewCount": 24,
"createdAt": "2026-02-23T19:27:22.457Z"
}