example-data.com
Menu
Browse docs and collections

Overview

applications / #369

Component variants

Medium
Small

User #236 applied (interview) Job #117 · 3/14/2026, 5:57:24 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 369,
  "userId": 236,
  "jobId": 117,
  "status": "interview",
  "coverLetter": "Abbas degero strenuus vilicus. Vito adversus odio. Cauda deputo adopto adicio stella sponte.\n\nExplicabo deputo tergo tubineus clarus. Civis incidunt labore admoneo ambitus aegrus degenero excepturi iure. Claudeo valetudo tam tracto conculco conforto trans depono socius.",
  "appliedAt": "2026-03-14T05:57:24.275Z",
  "lastUpdatedAt": "2026-05-07T13:41:07.720Z"
}