example-data.com
Menu
Browse docs and collections

Overview

applications / #150

Component variants

Medium
Small

User #106 applied (applied) Job #127 · 5/3/2026, 1:03:20 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 150,
  "userId": 106,
  "jobId": 127,
  "status": "applied",
  "coverLetter": "Congregatio ultra blandior tersus sortitus aveho. Auctus defungo sub et cuppedia. Synagoga vel ater esse tersus collum careo.",
  "appliedAt": "2026-05-03T01:03:20.477Z",
  "lastUpdatedAt": "2026-05-11T08:59:38.251Z"
}