example-data.com
Menu
Browse docs and collections

Overview

applications / #340

Component variants

Medium
Small

User #219 applied (interview) Job #194 · 4/21/2025, 7:51:24 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 340,
  "userId": 219,
  "jobId": 194,
  "status": "interview",
  "coverLetter": "Nesciunt cotidie allatus sequi color natus cedo aqua contabesco. Consequatur benevolentia tempore qui contra coruscus beatae adeptio tribuo minus. Vulpes bibo architecto amaritudo vitae demo comitatus arbitro socius voco.",
  "appliedAt": "2025-04-21T07:51:24.143Z",
  "lastUpdatedAt": "2025-06-04T08:51:12.596Z"
}