example-data.com
Menu
Browse docs and collections

Overview

flashcards / #26

flashcards #26

userId
Anne Hamill @anne_hamill75
deckName
Science Concepts
front
Virgo taedium adeo soleo decumbo ademptio arx cohibeo
back
Tardus crebro coepi.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
14
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 26,
  "userId": 9,
  "deckName": "Science Concepts",
  "front": "Virgo taedium adeo soleo decumbo ademptio arx cohibeo",
  "back": "Tardus crebro coepi.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-12T00:00:00.000Z",
  "nextReviewAt": "2026-05-28T00:00:00.000Z",
  "reviewCount": 14,
  "createdAt": "2026-01-14T19:30:57.283Z"
}