example-data.com
Menu
Browse docs and collections

Overview

applications / #308

Component variants

Medium
Small

User #203 applied (interview) Job #239 · 5/17/2026, 7:56:03 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 308,
  "userId": 203,
  "jobId": 239,
  "status": "interview",
  "coverLetter": "Uter molestiae solitudo abscido comminor eos. Creo charisma antiquus ager abbas comburo compono. Crudelis vaco addo terebro.",
  "appliedAt": "2026-05-17T19:56:03.571Z",
  "lastUpdatedAt": "2026-05-18T23:28:49.534Z"
}