example-data.com
Menu
Browse docs and collections

Overview

applications / #66

Component variants

Medium
Small

User #44 applied (rejected) Job #217 · 2/21/2025, 10:56:26 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 66,
  "userId": 44,
  "jobId": 217,
  "status": "rejected",
  "coverLetter": "Arbustum speciosus enim solus demens laboriosam aperte venia. Adnuo absens ait crinis paens angulus videlicet excepturi. Aliquid vesper cavus coruscus officiis denuncio demulceo via.\n\nCustodia supplanto auxilium. Trepide amissio volutabrum callide conor. Strues statim umerus cedo conventus quaerat.",
  "appliedAt": "2025-02-21T22:56:26.533Z",
  "lastUpdatedAt": "2025-03-02T16:33:13.736Z"
}