example-data.com
Menu
Browse docs and collections

Overview

applications / #148

Component variants

Medium
Small

User #106 applied (interview) Job #163 · 8/19/2025, 7:37:26 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 148,
  "userId": 106,
  "jobId": 163,
  "status": "interview",
  "coverLetter": "Absque comis tantum calamitas suscipit defluo asperiores aeneus. Cariosus temporibus expedita absconditus cerno. Studio tertius doloribus ara utroque audeo.",
  "appliedAt": "2025-08-19T07:37:26.881Z",
  "lastUpdatedAt": "2025-08-19T07:46:07.914Z"
}