example-data.com
Menu
Browse docs and collections

Overview

applications / #260

Component variants

Medium
Small

User #170 applied (accepted) Job #157 · 6/14/2025, 12:17:28 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 260,
  "userId": 170,
  "jobId": 157,
  "status": "accepted",
  "coverLetter": "Vacuus adinventitias textilis approbo calcar sumo tamquam caterva vita tabesco. Consectetur virga congregatio ubi consequuntur tabgo tepesco. Subiungo arbor ascisco vetus eos iusto culpa tego dolores desino.\n\nFacilis valetudo vehemens ullam bonus. Vulgo volaticus id ademptio. Nobis atavus coniuratio dolore.",
  "appliedAt": "2025-06-14T00:17:28.399Z",
  "lastUpdatedAt": "2025-07-07T06:31:27.641Z"
}