example-data.com
Menu
Browse docs and collections

Overview

applications / #193

Component variants

Medium
Small

User #132 applied (applied) Job #210 · 7/31/2025, 12:57:04 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 193,
  "userId": 132,
  "jobId": 210,
  "status": "applied",
  "coverLetter": "Vilitas tutamen caveo solus ceno. Similique alienus basium. Aestivus omnis admitto temptatio uter nisi.",
  "appliedAt": "2025-07-31T12:57:04.311Z",
  "lastUpdatedAt": "2025-08-10T14:18:12.078Z"
}