flashcards #69
- userId
-
Conrad Connelly @conrad.connelly22
- deckName
- JavaScript APIs
- front
- Aperte vergo caterva addo pecus
- back
- Coma absens corrupti crinis.
- difficulty
- easy
- lastReviewedAt
- nextReviewAt
- reviewCount
- 8
- createdAt
Overview
flashcards / #69
#69
#69
Request
curl example
curl -sS \ "https://example-data.com/api/v1/flashcards/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/flashcards/69" ); 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/69"
);
const flashcard = (await res.json()) as Flashcard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/flashcards/69"
)
flashcard = res.json() Response
{
"id": 69,
"userId": 30,
"deckName": "JavaScript APIs",
"front": "Aperte vergo caterva addo pecus",
"back": "Coma absens corrupti crinis.",
"difficulty": "easy",
"lastReviewedAt": "2026-04-22T00:00:00.000Z",
"nextReviewAt": "2026-05-13T00:00:00.000Z",
"reviewCount": 8,
"createdAt": "2025-09-23T17:04:03.112Z"
}