example-data.com
Menu
Browse docs and collections

Overview

applications / #21

Component variants

Medium
Small

User #14 applied (accepted) Job #91 · 4/3/2025, 11:49:14 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 21,
  "userId": 14,
  "jobId": 91,
  "status": "accepted",
  "coverLetter": "Verbera pecus tibi conforto soluta vinum minus comes. Nemo defessus debeo. Taceo suppono dedecor bos.",
  "appliedAt": "2025-04-03T11:49:14.390Z",
  "lastUpdatedAt": "2025-05-01T03:59:59.755Z"
}