example-data.com
Menu
Browse docs and collections

Overview

applications / #12

Component variants

Medium
Small

User #8 applied (applied) Job #177 · 10/27/2025, 10:09:10 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 12,
  "userId": 8,
  "jobId": 177,
  "status": "applied",
  "coverLetter": "Tunc acervus velit patruus arto talus. Timor utilis dapifer clarus volubilis tyrannus tenus. Curto thymbra vomica celebrer tondeo sui debeo ubi ustilo.\n\nUnde vetus copia audax degenero tabernus caecus. Vilitas pectus bene. Cubicularis attero nemo talus ea thymbra.",
  "appliedAt": "2025-10-27T22:09:10.665Z",
  "lastUpdatedAt": "2025-11-19T03:31:47.722Z"
}