example-data.com
Menu
Browse docs and collections

Overview

applications / #151

Component variants

Medium
Small

User #107 applied (interview) Job #7 · 9/23/2025, 8:20:48 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 151,
  "userId": 107,
  "jobId": 7,
  "status": "interview",
  "coverLetter": "Sufficio valde apud modi tempore. Aggero laudantium rem somnus bibo. Coniecto amet perspiciatis ipsa.",
  "appliedAt": "2025-09-23T20:20:48.040Z",
  "lastUpdatedAt": "2025-10-30T21:23:43.131Z"
}