example-data.com
Menu
Browse docs and collections

Overview

applications / #314

Component variants

Medium
Small

User #205 applied (screening) Job #116 · 4/7/2026, 2:06:32 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 314,
  "userId": 205,
  "jobId": 116,
  "status": "screening",
  "coverLetter": "Eos creta adversus absque comedo atrocitas cubo arbitro. Sint derideo pel. Capio ultio comes conspergo ambulo minima.",
  "appliedAt": "2026-04-07T14:06:32.990Z",
  "lastUpdatedAt": "2026-05-01T22:02:20.332Z"
}