flashcards #15
- userId
-
Einar Volkman @einar_volkman69
- deckName
- Spanish Verbs
- front
- Acceptus excepturi defaeco
- back
- Volaticus centum basium tollo coma.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 8
- createdAt
Overview
flashcards / #15
#15
#15
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/15" ); 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/15"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/15"
)
flashcard = res.json() Response
{
"id": 15,
"userId": 7,
"deckName": "Spanish Verbs",
"front": "Acceptus excepturi defaeco",
"back": "Volaticus centum basium tollo coma.",
"difficulty": "hard",
"lastReviewedAt": "2026-05-01T00:00:00.000Z",
"nextReviewAt": "2026-05-17T00:00:00.000Z",
"reviewCount": 8,
"createdAt": "2025-09-26T11:05:36.102Z"
}