example-data.com
Menu
Browse docs and collections

Overview

applications / #359

Component variants

Medium
Small

User #231 applied (interview) Job #149 · 7/6/2025, 6:11:39 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 359,
  "userId": 231,
  "jobId": 149,
  "status": "interview",
  "coverLetter": "Torrens doloribus undique annus tondeo. Alveus curvo vacuus. Videlicet cursim coniuratio carus delinquo.",
  "appliedAt": "2025-07-06T18:11:39.578Z",
  "lastUpdatedAt": "2025-07-09T13:47:30.713Z"
}