flashcards #5
- userId
-
Webster Skiles @webster_skiles39
- deckName
- History Dates
- front
- Consequatur surculus aestas nihil
- back
- Deleniti repudiandae corpus.
- difficulty
- easy
- lastReviewedAt
- nextReviewAt
- reviewCount
- 18
- createdAt
Overview
flashcards / #5
#5
#5
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/5" ); 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/5"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/5"
)
flashcard = res.json() Response
{
"id": 5,
"userId": 5,
"deckName": "History Dates",
"front": "Consequatur surculus aestas nihil",
"back": "Deleniti repudiandae corpus.",
"difficulty": "easy",
"lastReviewedAt": "2026-03-28T00:00:00.000Z",
"nextReviewAt": "2026-04-13T00:00:00.000Z",
"reviewCount": 18,
"createdAt": "2025-09-01T21:07:47.890Z"
}