example-data.com
Menu
Browse docs and collections

Overview

applications / #34

Component variants

Medium
Small

User #24 applied (interview) Job #131 · 2/17/2025, 6:35:35 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 34,
  "userId": 24,
  "jobId": 131,
  "status": "interview",
  "coverLetter": "Agnosco reprehenderit cur assumenda varietas aut decor. Vinculum confido magni comburo. Ex sperno pecto unde.\n\nConiuratio creta omnis aureus testimonium tabgo. Calculus magnam aestivus asperiores tabesco spes. Bis necessitatibus agnitio ustulo.",
  "appliedAt": "2025-02-17T06:35:35.751Z",
  "lastUpdatedAt": "2025-04-13T00:19:09.271Z"
}