example-data.com
Menu
Browse docs and collections

Overview

applications / #90

Component variants

Medium
Small

User #61 applied (applied) Job #8 · 5/9/2025, 2:10:04 AM

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/applications/90"
);
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/90"
);
const application = (await res.json()) as Application;

Python example

import requests

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

Response

{
  "id": 90,
  "userId": 61,
  "jobId": 8,
  "status": "applied",
  "coverLetter": "Cotidie asper ducimus candidus coaegresco stultus campana impedit. Tremo arx uredo ago facere depopulo ultra ex. Laudantium defaeco comis cuppedia.",
  "appliedAt": "2025-05-09T02:10:04.233Z",
  "lastUpdatedAt": "2025-05-12T04:45:17.398Z"
}