example-data.com
Menu
Browse docs and collections

Overview

flashcards / #483

flashcards #483

userId
Malvina Ortiz @malvina_ortiz
deckName
History Dates
front
Armarium theca temperantia spargo cresco amoveo
back
Arca solus deduco nisi.
difficulty
medium
lastReviewedAt
nextReviewAt
reviewCount
22
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/flashcards/483" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/flashcards/483"
);
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/483"
);
const flashcard = (await res.json()) as Flashcard;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/flashcards/483"
)
flashcard = res.json()

Response

{
  "id": 483,
  "userId": 234,
  "deckName": "History Dates",
  "front": "Armarium theca temperantia spargo cresco amoveo",
  "back": "Arca solus deduco nisi.",
  "difficulty": "medium",
  "lastReviewedAt": "2026-05-11T00:00:00.000Z",
  "nextReviewAt": "2026-05-29T00:00:00.000Z",
  "reviewCount": 22,
  "createdAt": "2025-11-25T11:41:11.646Z"
}