example-data.com
Menu
Browse docs and collections

Overview

flashcards / #435

flashcards #435

userId
Oliver Mitchell @oliver_mitchell50
deckName
Science Concepts
front
Ad in trans thermae deleo
back
Delectus congregatio unde pauper candidus antiquus tenetur casso surculus taedium vespillo corrumpo.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
10
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 435,
  "userId": 194,
  "deckName": "Science Concepts",
  "front": "Ad in trans thermae deleo",
  "back": "Delectus congregatio unde pauper candidus antiquus tenetur casso surculus taedium vespillo corrumpo.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-04-13T00:00:00.000Z",
  "nextReviewAt": "2026-04-18T00:00:00.000Z",
  "reviewCount": 10,
  "createdAt": "2025-07-16T06:39:03.010Z"
}