example-data.com
Menu
Browse docs and collections

Overview

applications / #198

Component variants

Medium
Small

User #134 applied (screening) Job #208 · 6/16/2025, 4:50:18 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 198,
  "userId": 134,
  "jobId": 208,
  "status": "screening",
  "coverLetter": "Adeo demum quaerat aut vesper pax illum arcesso. Caritas neque vicinus reprehenderit tactus abeo creo cena aspicio corroboro. Modi abbas ars tonsor supra.",
  "appliedAt": "2025-06-16T04:50:18.451Z",
  "lastUpdatedAt": "2025-07-02T12:29:07.988Z"
}