example-data.com
Menu
Browse docs and collections

resumes

resumes

Page 13 of 13.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/resumes?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/resumes?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/resumes";

const res = await fetch(
  "https://example-data.com/api/v1/resumes?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Resume>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/resumes",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 289,
      "userId": 244,
      "title": "Product Resume",
      "summary": "Caste decens tepesco. Laudantium vorago aro volva cunae tyrannus. Acies torqueo denuncio error pectus arcus bene conturbo.",
      "isDefault": true,
      "createdAt": "2025-10-03T15:48:54.356Z",
      "updatedAt": "2025-11-23T14:56:48.561Z"
    },
    {
      "id": 290,
      "userId": 245,
      "title": "Software Engineering Resume",
      "summary": "Bos crastinus tenetur. Vomer sursum stips pax vilitas censura animi conor voluptas. Tribuo volubilis deleo aequitas adversus utique.",
      "isDefault": false,
      "createdAt": "2025-12-07T02:57:14.750Z",
      "updatedAt": "2026-01-01T02:40:02.627Z"
    },
    {
      "id": 291,
      "userId": 245,
      "title": "Software Engineering Resume",
      "summary": "Vivo crur sed ancilla. Spes qui blanditiis nam adipiscor apto quo consequuntur. Acceptus deduco ara accedo turba votum benevolentia.",
      "isDefault": true,
      "createdAt": "2024-09-26T23:57:55.833Z",
      "updatedAt": "2025-08-12T02:49:09.436Z"
    }
  ],
  "meta": {
    "page": 13,
    "limit": 24,
    "total": 298,
    "totalPages": 13
  },
  "links": {
    "self": "/api/v1/resumes?page=13&limit=24",
    "first": "/api/v1/resumes?page=1&limit=24",
    "last": "/api/v1/resumes?page=13&limit=24",
    "next": null,
    "prev": "/api/v1/resumes?page=12&limit=24"
  }
}