example-data.com
Menu
Browse docs and collections

Overview

applications / #160

Component variants

Medium
Small

User #110 applied (accepted) Job #217 · 1/21/2026, 9:19:52 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 160,
  "userId": 110,
  "jobId": 217,
  "status": "accepted",
  "coverLetter": "Chirographum pecto textus subseco. Tutis virgo thymbra adsum quis. Thesaurus compono vereor vorax vetus odio dedecor creator.\n\nCur audeo acidus. Cruciamentum stipes delego vapulus deputo commemoro certus peior curvo stipes. Derideo sonitus labore credo.",
  "appliedAt": "2026-01-21T09:19:52.052Z",
  "lastUpdatedAt": "2026-02-06T00:39:37.527Z"
}