example-data.com
Menu
Browse docs and collections

Overview

applications / #80

Component variants

Medium
Small

User #57 applied (interview) Job #169 · 4/18/2025, 5:54:29 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 80,
  "userId": 57,
  "jobId": 169,
  "status": "interview",
  "coverLetter": "Degusto stabilis aqua calamitas absens verus. Occaecati conspergo tero. Omnis ulterius patior delego sodalitas blandior reprehenderit tamen cetera dicta.\n\nAdstringo demergo combibo omnis varius aveho. Deorsum deludo tantillus tabesco. Bis veritatis claro torrens illum ulterius.",
  "appliedAt": "2025-04-18T17:54:29.603Z",
  "lastUpdatedAt": "2025-05-07T15:38:37.410Z"
}