example-data.com
Menu
Browse docs and collections

Overview

resumes / #64

Product Resume

userId
Samson Stroman @samson_stroman
title
Product Resume
summary
Titulus spoliatio aspernatur tondeo cubo textor urbanus decet ascit tonsor. Colligo patrocinor asporto. Appello conculco pecus.
isDefault
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/resumes/64"
);
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/64"
);
const resume = (await res.json()) as Resume;

Python example

import requests

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

Response

{
  "id": 64,
  "userId": 52,
  "title": "Product Resume",
  "summary": "Titulus spoliatio aspernatur tondeo cubo textor urbanus decet ascit tonsor. Colligo patrocinor asporto. Appello conculco pecus.",
  "isDefault": true,
  "createdAt": "2024-07-18T16:15:11.983Z",
  "updatedAt": "2026-01-25T13:49:22.643Z"
}