example-data.com
Menu
Browse docs and collections

Overview

applications / #303

Component variants

Medium
Small

User #200 applied (interview) Job #183 · 10/14/2025, 3:39:18 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 303,
  "userId": 200,
  "jobId": 183,
  "status": "interview",
  "coverLetter": "Cado synagoga thema quisquam bis atqui a utor aptus. Utpote vestigium dolore. Inventore argumentum crustulum.",
  "appliedAt": "2025-10-14T15:39:18.969Z",
  "lastUpdatedAt": "2025-11-09T11:09:03.432Z"
}