example-data.com
Menu
Browse docs and collections

Overview

applications / #380

Component variants

Medium
Small

User #245 applied (screening) Job #71 · 9/9/2025, 6:44:19 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 380,
  "userId": 245,
  "jobId": 71,
  "status": "screening",
  "coverLetter": "Volaticus occaecati tergiversatio mollitia. Advoco convoco vinum curis conturbo usitas tot varietas demo. Sollers callide aggredior odio vado.",
  "appliedAt": "2025-09-09T06:44:19.626Z",
  "lastUpdatedAt": "2025-09-14T21:02:57.996Z"
}