example-data.com

resumes / #5

userId
Cayla Farrell @cayla_farrell
title
Software Engineering Resume
summary
Suppellex traho constans tabula aegre peccatus cresco repudiandae. Ante theca subvenio templum tempora surgo defessus viridis quia. Inflammatio tepidus desino sordeo tabgo dolor tabesco.
isDefault
true
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/resumes/5"
)
resume = res.json()
{
  "id": 5,
  "userId": 4,
  "title": "Software Engineering Resume",
  "summary": "Suppellex traho constans tabula aegre peccatus cresco repudiandae. Ante theca subvenio templum tempora surgo defessus viridis quia. Inflammatio tepidus desino sordeo tabgo dolor tabesco.",
  "isDefault": true,
  "createdAt": "2023-12-29T23:42:19.880Z",
  "updatedAt": "2025-06-14T17:43:29.143Z"
}
Draftbit