example-data.com
Menu
Browse docs and collections

Overview

flashcards / #14

flashcards #14

userId
Einar Volkman @einar_volkman69
deckName
Spanish Verbs
front
Volubilis supellex contabesco basium
back
Degenero delibero fuga dolore comparo abeo.
difficulty
medium
lastReviewedAt
nextReviewAt
reviewCount
25
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 14,
  "userId": 7,
  "deckName": "Spanish Verbs",
  "front": "Volubilis supellex contabesco basium",
  "back": "Degenero delibero fuga dolore comparo abeo.",
  "difficulty": "medium",
  "lastReviewedAt": "2026-04-25T00:00:00.000Z",
  "nextReviewAt": "2026-05-20T00:00:00.000Z",
  "reviewCount": 25,
  "createdAt": "2026-02-09T04:31:15.965Z"
}