flashcards #139
- userId
-
Ike Breitenberg @ike.breitenberg
- deckName
- Vocabulary
- front
- Degenero conicio testimonium capio claro
- back
- Reprehenderit termes vulgus arcesso.
- difficulty
- easy
- lastReviewedAt
- nextReviewAt
- reviewCount
- 10
- createdAt
Overview
flashcards / #139
#139
#139
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/139" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/139" ); 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/139"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/139"
)
flashcard = res.json() Response
{
"id": 139,
"userId": 72,
"deckName": "Vocabulary",
"front": "Degenero conicio testimonium capio claro",
"back": "Reprehenderit termes vulgus arcesso.",
"difficulty": "easy",
"lastReviewedAt": "2026-03-24T00:00:00.000Z",
"nextReviewAt": "2026-04-05T00:00:00.000Z",
"reviewCount": 10,
"createdAt": "2025-12-18T00:08:00.121Z"
}