example-data.com
Menu
Browse docs and collections

Overview

flashcards / #67

flashcards #67

userId
Melvina Reilly @melvina_reilly83
deckName
Vocabulary
front
Astrum capio decet maiores vapulus
back
Ara ver tempus nobis careo accusator bestia thymbra sodalitas volo deporto tam.
difficulty
hard
lastReviewedAt
nextReviewAt
reviewCount
17
createdAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 67,
  "userId": 26,
  "deckName": "Vocabulary",
  "front": "Astrum capio decet maiores vapulus",
  "back": "Ara ver tempus nobis careo accusator bestia thymbra sodalitas volo deporto tam.",
  "difficulty": "hard",
  "lastReviewedAt": "2026-05-06T00:00:00.000Z",
  "nextReviewAt": "2026-05-27T00:00:00.000Z",
  "reviewCount": 17,
  "createdAt": "2026-02-05T22:30:11.409Z"
}