example-data.com
Menu
Browse docs and collections

Overview

applications / #389

Component variants

Medium
Small

User #250 applied (screening) Job #117 · 5/14/2026, 11:15:51 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 389,
  "userId": 250,
  "jobId": 117,
  "status": "screening",
  "coverLetter": "Tamen credo articulus vinco. Esse corrigo attollo vociferor ademptio valeo sufficio. Cubicularis aspernatur verecundia bardus adhaero adopto quod adamo debitis.",
  "appliedAt": "2026-05-14T23:15:51.196Z",
  "lastUpdatedAt": "2026-05-19T21:55:19.602Z"
}