example-data.com
Menu
Browse docs and collections

Overview

applications / #136

Component variants

Medium
Small

User #94 applied (accepted) Job #112 · 5/9/2026, 7:37:10 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 136,
  "userId": 94,
  "jobId": 112,
  "status": "accepted",
  "coverLetter": "Amicitia consequatur capitulus cunctatio conitor. Utroque distinctio agnitio atavus molestias artificiose thesis bellicus antepono triumphus. Ipsam dens pecco taceo templum contra.",
  "appliedAt": "2026-05-09T07:37:10.722Z",
  "lastUpdatedAt": "2026-05-16T08:37:33.409Z"
}