example-data.com
Menu
Browse docs and collections

Overview

applications / #349

Component variants

Medium
Small

User #222 applied (rejected) Job #168 · 3/29/2026, 1:18:21 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 349,
  "userId": 222,
  "jobId": 168,
  "status": "rejected",
  "coverLetter": "Substantia varietas autus. Eligendi volup animadverto tepidus blandior cariosus talus ubi vapulus. Dolores color sit bellicus.",
  "appliedAt": "2026-03-29T01:18:21.127Z",
  "lastUpdatedAt": "2026-05-09T09:41:31.439Z"
}