example-data.com
Menu
Browse docs and collections

Overview

resumes / #285

Software Engineering Resume

userId
Marcelina Grady @marcelina_grady19
title
Software Engineering Resume
summary
Celebrer delego adflicto antepono tricesimus soleo unde despecto. Attollo cogo tabernus benigne stips. Totam molestias triumphus.
isDefault
true
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/resumes/285" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/resumes/285"
);
const resume = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/resumes.d.ts https://example-data.com/types/resumes.d.ts
import type { Resume } from "./types/resumes";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes/285"
)
resume = res.json()

Response

{
  "id": 285,
  "userId": 241,
  "title": "Software Engineering Resume",
  "summary": "Celebrer delego adflicto antepono tricesimus soleo unde despecto. Attollo cogo tabernus benigne stips. Totam molestias triumphus.",
  "isDefault": true,
  "createdAt": "2025-01-01T00:29:59.390Z",
  "updatedAt": "2025-06-03T03:00:29.717Z"
}