example-data.com
Menu
Browse docs and collections

Overview

applications / #366

Component variants

Medium
Small

User #234 applied (rejected) Job #53 · 12/8/2025, 5:01:11 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 366,
  "userId": 234,
  "jobId": 53,
  "status": "rejected",
  "coverLetter": "Aggredior varius vicissitudo nesciunt cohibeo adduco tenus temperantia comminor consequuntur. Barba ancilla acer utroque aperte pecco ultra. Anser tempore paulatim vae vallum.\n\nSubiungo teres vado ait accusantium acceptus spiritus tutis illo. Adeptio ratione creator ab. Viscus vere in considero coma quam.",
  "appliedAt": "2025-12-08T05:01:11.737Z",
  "lastUpdatedAt": "2025-12-23T11:42:35.402Z"
}