example-data.com
Menu
Browse docs and collections

Overview

applications / #93

Component variants

Medium
Small

User #62 applied (offer) Job #228 · 8/22/2025, 8:43:01 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 93,
  "userId": 62,
  "jobId": 228,
  "status": "offer",
  "coverLetter": "Ipsam assumenda color sortitus attonbitus rerum communis odio suggero dolorum. Vis charisma agnitio appono abundans. Clementia vociferor uxor maiores admoneo.",
  "appliedAt": "2025-08-22T20:43:01.229Z",
  "lastUpdatedAt": "2025-09-27T06:39:12.390Z"
}