example-data.com

resumes / #163

userId
Jonas Rath @jonas.rath
title
General Resume
summary
Compello absens crapula. Angustus quae minima atrox solum tergiversatio concedo. Quasi clam odit commemoro.
isDefault
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/resumes/163"
)
resume = res.json()
{
  "id": 163,
  "userId": 138,
  "title": "General Resume",
  "summary": "Compello absens crapula. Angustus quae minima atrox solum tergiversatio concedo. Quasi clam odit commemoro.",
  "isDefault": false,
  "createdAt": "2023-08-26T04:17:29.808Z",
  "updatedAt": "2024-08-26T05:54:19.208Z"
}
Draftbit