example-data.com
Menu
Browse docs and collections

Overview

applications / #352

Component variants

Medium
Small

User #227 applied (interview) Job #34 · 4/1/2026, 9:10:01 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 352,
  "userId": 227,
  "jobId": 34,
  "status": "interview",
  "coverLetter": "Creo arx ultra amplus suppono repellendus vilis. Cupressus tredecim textilis ver quaerat ubi beatus. Accusator comminor colo terminatio labore soleo arto varius aestus repellat.\n\nSum pectus aperio valens triumphus pel denuo alter. Cohibeo combibo balbus adipisci vitiosus conculco. Taedium arbitro tergiversatio expedita tero tersus.",
  "appliedAt": "2026-04-01T09:10:01.752Z",
  "lastUpdatedAt": "2026-04-22T05:23:05.881Z"
}