example-data.com
Menu
Browse docs and collections

Overview

applications / #175

Component variants

Medium
Small

User #119 applied (withdrawn) Job #45 · 5/10/2025, 1:46:21 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 175,
  "userId": 119,
  "jobId": 45,
  "status": "withdrawn",
  "coverLetter": "Sumptus comes subnecto tenax omnis. Tabernus tricesimus tui thymbra coerceo tristis vilicus supellex aequitas. Campana tego bardus vulgus stella cornu velum caelum.",
  "appliedAt": "2025-05-10T01:46:21.017Z",
  "lastUpdatedAt": "2025-06-17T17:50:11.569Z"
}