example-data.com
Menu
Browse docs and collections

Overview

applications / #146

Component variants

Medium
Small

User #105 applied (applied) Job #203 · 9/22/2025, 11:49:56 PM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/applications/146"
);
const application = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/applications/146"
);
const application = (await res.json()) as Application;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/applications/146"
)
application = res.json()

Response

{
  "id": 146,
  "userId": 105,
  "jobId": 203,
  "status": "applied",
  "coverLetter": "Confugo acer sumptus barba tamen teres voro. Bene arbustum iure defungo veniam vito. Amplus ventosus cito cubicularis non vergo varius.",
  "appliedAt": "2025-09-22T23:49:56.764Z",
  "lastUpdatedAt": "2025-11-17T20:41:33.275Z"
}