example-data.com
Menu
Browse docs and collections

Overview

applications / #386

Component variants

Medium
Small

User #248 applied (offer) Job #34 · 4/21/2026, 1:36:59 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 386,
  "userId": 248,
  "jobId": 34,
  "status": "offer",
  "coverLetter": "Corroboro chirographum voluptatum dicta celer adinventitias tenax stabilis. Cur abscido tonsor ambulo. Constans iure tutis cunabula subiungo cohaero.",
  "appliedAt": "2026-04-21T13:36:59.625Z",
  "lastUpdatedAt": "2026-04-26T07:22:42.362Z"
}