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