example-data.com
Menu
Browse docs and collections

Overview

applications / #192

Component variants

Medium
Small

User #131 applied (interview) Job #157 · 3/6/2025, 2:26:48 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 192,
  "userId": 131,
  "jobId": 157,
  "status": "interview",
  "coverLetter": "Dolorum vae iure abutor terror virga tremo tolero spoliatio atrocitas. Alveus pax delinquo corona. Tracto aurum terminatio ut vilis degusto.",
  "appliedAt": "2025-03-06T02:26:48.596Z",
  "lastUpdatedAt": "2025-04-04T04:44:38.080Z"
}