example-data.com

resumes / #146

userId
Nikko Kuhlman @nikko_kuhlman
title
Product Resume
summary
Conqueror xiphias ambulo sumo. Commodo circumvenio temperantia comedo praesentium vergo ascit terra. Synagoga acervus asper solvo illum strenuus alveus.
isDefault
true
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/resumes/146" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/resumes/146"
);
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/146"
);
const resume = (await res.json()) as Resume;
import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes/146"
)
resume = res.json()
{
  "id": 146,
  "userId": 122,
  "title": "Product Resume",
  "summary": "Conqueror xiphias ambulo sumo. Commodo circumvenio temperantia comedo praesentium vergo ascit terra. Synagoga acervus asper solvo illum strenuus alveus.",
  "isDefault": true,
  "createdAt": "2025-05-08T23:50:44.937Z",
  "updatedAt": "2025-07-21T07:44:39.893Z"
}
Draftbit