example-data.com
Menu
Browse docs and collections

Overview

flashcards / #283

flashcards #283

userId
Nikko Kuhlman @nikko_kuhlman
deckName
Algorithms
front
Quidem tredecim thema canto vero
back
Aurum succurro totidem inflammatio speculum campana sint facere delinquo.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
10
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 283,
  "userId": 122,
  "deckName": "Algorithms",
  "front": "Quidem tredecim thema canto vero",
  "back": "Aurum succurro totidem inflammatio speculum campana sint facere delinquo.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-13T00:00:00.000Z",
  "nextReviewAt": "2026-05-30T00:00:00.000Z",
  "reviewCount": 10,
  "createdAt": "2026-03-31T11:34:08.200Z"
}