example-data.com
Menu
Browse docs and collections

Overview

applications / #221

Component variants

Medium
Small

User #143 applied (interview) Job #12 · 12/26/2025, 1:48:32 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 221,
  "userId": 143,
  "jobId": 12,
  "status": "interview",
  "coverLetter": "Conturbo vinco canonicus vis claudeo centum aegrotatio non convoco aliquam. Titulus cultellus eaque nam degusto aequus bibo vix umerus. Clarus virgo illum textus claro cresco vomer supellex.",
  "appliedAt": "2025-12-26T13:48:32.136Z",
  "lastUpdatedAt": "2026-01-12T19:08:46.192Z"
}