example-data.com
Menu
Browse docs and collections

Overview

applications / #10

Component variants

Medium
Small

User #7 applied (rejected) Job #140 · 4/9/2026, 4:58:31 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 10,
  "userId": 7,
  "jobId": 140,
  "status": "rejected",
  "coverLetter": "Conqueror nisi ex viscus caste. Vapulus vobis vulgaris incidunt laudantium. Qui currus abbas usitas uter nihil.",
  "appliedAt": "2026-04-09T16:58:31.535Z",
  "lastUpdatedAt": "2026-05-01T18:59:47.643Z"
}