example-data.com
Menu
Browse docs and collections

Overview

applications / #187

Component variants

Medium
Small

User #126 applied (accepted) Job #3 · 5/7/2025, 11:36:04 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 187,
  "userId": 126,
  "jobId": 3,
  "status": "accepted",
  "coverLetter": "Ago truculenter tondeo vester. Attollo crapula aequus suscipit dedecor claro quia voluptatibus. Recusandae vindico ambulo civis tero vir defetiscor eos cavus.",
  "appliedAt": "2025-05-07T23:36:04.543Z",
  "lastUpdatedAt": "2025-06-09T13:40:57.865Z"
}