example-data.com
Menu
Browse docs and collections

Overview

applications / #300

Component variants

Medium
Small

User #199 applied (screening) Job #74 · 6/29/2025, 10:08:04 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 300,
  "userId": 199,
  "jobId": 74,
  "status": "screening",
  "coverLetter": "Subito denuo aegrus commodo cresco dolorem cubo coaegresco amaritudo velut. Odio repudiandae textus. Civitas aufero asperiores tendo.",
  "appliedAt": "2025-06-29T10:08:04.801Z",
  "lastUpdatedAt": "2025-08-19T13:27:21.372Z"
}