example-data.com
Menu
Browse docs and collections

Overview

applications / #223

Component variants

Medium
Small

User #147 applied (screening) Job #50 · 3/11/2026, 8:47:35 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 223,
  "userId": 147,
  "jobId": 50,
  "status": "screening",
  "coverLetter": "Aeneus vulgo dedecor carpo amissio cunctatio terminatio vesper. Aro crastinus totus comis totidem tametsi veritatis auctus. Tabula cibus id titulus defetiscor triduana.",
  "appliedAt": "2026-03-11T08:47:35.509Z",
  "lastUpdatedAt": "2026-04-16T15:03:14.031Z"
}