flashcards #431
- userId
-
Oliver Mitchell @oliver_mitchell50
- deckName
- Math Basics
- front
- Sordeo appositus turbo
- back
- Deludo arcus coma.
- difficulty
- hard
- lastReviewedAt
- nextReviewAt
- reviewCount
- 21
- createdAt
Overview
flashcards / #431
#431
#431
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/431" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/431" ); 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/431"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/431"
)
flashcard = res.json() Response
{
"id": 431,
"userId": 194,
"deckName": "Math Basics",
"front": "Sordeo appositus turbo",
"back": "Deludo arcus coma.",
"difficulty": "hard",
"lastReviewedAt": "2026-05-12T00:00:00.000Z",
"nextReviewAt": "2026-05-19T00:00:00.000Z",
"reviewCount": 21,
"createdAt": "2025-08-21T08:57:39.038Z"
}