example-data.com
Menu
Browse docs and collections

Overview

applications / #228

Component variants

Medium
Small

User #149 applied (applied) Job #14 · 9/30/2025, 11:58:18 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 228,
  "userId": 149,
  "jobId": 14,
  "status": "applied",
  "coverLetter": "Ipsum similique universe demum textilis admoneo audacia. Compello deinde consectetur aiunt. Uberrime cito spes vilis.",
  "appliedAt": "2025-09-30T23:58:18.913Z",
  "lastUpdatedAt": "2025-10-08T11:38:56.932Z"
}