example-data.com
Menu
Browse docs and collections

Overview

applications / #273

Component variants

Medium
Small

User #177 applied (screening) Job #140 · 3/30/2026, 3:25:59 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 273,
  "userId": 177,
  "jobId": 140,
  "status": "screening",
  "coverLetter": "Teneo officia cibo possimus suppellex verus corona paulatim magni. Voluptate thymbra aspicio somnus desolo ait sint libero. Adicio causa alii sustineo degenero acervus alter sollers.",
  "appliedAt": "2026-03-30T15:25:59.100Z",
  "lastUpdatedAt": "2026-05-10T07:12:31.082Z"
}