example-data.com

resumes / #139

userId
Daren Lockman @daren_lockman67
title
Software Engineering Resume
summary
Delinquo civitas celebrer debitis quas bellum appello totus. Cupio thymbra carbo. Trepide volo thesis.
isDefault
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/resumes/139"
)
resume = res.json()
{
  "id": 139,
  "userId": 116,
  "title": "Software Engineering Resume",
  "summary": "Delinquo civitas celebrer debitis quas bellum appello totus. Cupio thymbra carbo. Trepide volo thesis.",
  "isDefault": true,
  "createdAt": "2025-06-16T03:36:13.060Z",
  "updatedAt": "2026-03-08T12:37:31.510Z"
}
Draftbit