example-data.com
Menu
Browse docs and collections

Overview

applications / #159

Component variants

Medium
Small

User #110 applied (accepted) Job #90 · 11/25/2025, 2:40:55 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 159,
  "userId": 110,
  "jobId": 90,
  "status": "accepted",
  "coverLetter": "Cenaculum odit tondeo nam infit correptius. Spiculum ocer eveniet. Velut velut dapifer atrocitas soluta.",
  "appliedAt": "2025-11-25T14:40:55.522Z",
  "lastUpdatedAt": "2025-11-30T10:38:48.678Z"
}