example-data.com
Menu
Browse docs and collections

Overview

applications / #165

Component variants

Medium
Small

User #114 applied (offer) Job #238 · 2/3/2026, 7:24:33 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 165,
  "userId": 114,
  "jobId": 238,
  "status": "offer",
  "coverLetter": "Traho umerus arx concedo pecus capio aequus recusandae qui. Tabernus utroque quos quia aperio altus cunae vix reiciendis. Ipsam vitae statua.",
  "appliedAt": "2026-02-03T07:24:33.085Z",
  "lastUpdatedAt": "2026-03-14T20:31:03.170Z"
}