example-data.com
Menu
Browse docs and collections

Overview

applications / #280

Component variants

Medium
Small

User #183 applied (applied) Job #231 · 11/5/2025, 8:43:54 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 280,
  "userId": 183,
  "jobId": 231,
  "status": "applied",
  "coverLetter": "Vallum correptius acervus aperte decens tepidus vitae terga eveniet. Agnosco error coniecto solutio teneo suscipit solus iure tam sol. Arx varius turpis.",
  "appliedAt": "2025-11-05T08:43:54.866Z",
  "lastUpdatedAt": "2025-12-16T13:08:43.627Z"
}