example-data.com

resumes / #88

userId
Ike Breitenberg @ike.breitenberg
title
General Resume
summary
Denego tristis voluptas cimentarius deleo. Exercitationem spectaculum pectus curo. Vomito spero sol cito videlicet ubi ustilo deserunt taceo.
isDefault
true
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/resumes/88" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/resumes/88"
);
const resume = await res.json();
import type { Resume } from "https://example-data.com/types/resumes.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/resumes/88"
);
const resume = (await res.json()) as Resume;
import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes/88"
)
resume = res.json()
{
  "id": 88,
  "userId": 72,
  "title": "General Resume",
  "summary": "Denego tristis voluptas cimentarius deleo. Exercitationem spectaculum pectus curo. Vomito spero sol cito videlicet ubi ustilo deserunt taceo.",
  "isDefault": true,
  "createdAt": "2024-11-08T14:18:50.460Z",
  "updatedAt": "2025-11-11T06:02:58.747Z"
}
Draftbit