example-data.com
Menu
Browse docs and collections

Overview

applications / #6

Component variants

Medium
Small

User #4 applied (applied) Job #50 · 6/9/2025, 9:55:51 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 6,
  "userId": 4,
  "jobId": 50,
  "status": "applied",
  "coverLetter": "Delectatio tabernus usque termes deinde coaegresco abbas eum comitatus subiungo. Pel adimpleo fugit amplitudo carpo asporto ara vinitor pecco circumvenio. Amo defero velociter.",
  "appliedAt": "2025-06-09T09:55:51.631Z",
  "lastUpdatedAt": "2025-08-07T15:28:04.288Z"
}