example-data.com
Menu
Browse docs and collections

Overview

applications / #227

Component variants

Medium
Small

User #149 applied (applied) Job #131 · 6/19/2025, 12:07:57 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 227,
  "userId": 149,
  "jobId": 131,
  "status": "applied",
  "coverLetter": "Virgo averto cibo absconditus talio. Consequatur vel debilito catena itaque defaeco ullam abscido depraedor. Canonicus decipio paens quos tempore arma arcesso delicate carcer.",
  "appliedAt": "2025-06-19T00:07:57.749Z",
  "lastUpdatedAt": "2025-06-20T00:03:51.265Z"
}