example-data.com
Menu
Browse docs and collections

Overview

applications / #286

Component variants

Medium
Small

User #189 applied (applied) Job #57 · 8/29/2025, 2:32:07 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 286,
  "userId": 189,
  "jobId": 57,
  "status": "applied",
  "coverLetter": "Tenus autem sublime. Velut adnuo creator acsi cito. Cornu cresco vallum.\n\nTredecim conspergo soluta canis trans. Barba testimonium tubineus derelinquo certe. Aegre aspernatur crux carcer ex solutio tamquam voveo tantum.",
  "appliedAt": "2025-08-29T14:32:07.690Z",
  "lastUpdatedAt": "2025-09-17T06:23:01.538Z"
}