example-data.com
Menu
Browse docs and collections

Overview

applications / #320

Component variants

Medium
Small

User #207 applied (screening) Job #153 · 9/25/2025, 5:24:49 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 320,
  "userId": 207,
  "jobId": 153,
  "status": "screening",
  "coverLetter": "Vestigium inflammatio tubineus terminatio consequatur. Cultellus dedecor iste charisma calco vilis summopere varius. Atqui traho reprehenderit congregatio.",
  "appliedAt": "2025-09-25T05:24:49.329Z",
  "lastUpdatedAt": "2025-10-24T18:58:10.385Z"
}