Activity #14
User #10 applied (applied) Job #180
6/3/2025, 10:11:45 AM
Overview
applications / #14
User #10 applied (applied) Job #180
6/3/2025, 10:11:45 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/14" ); 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/14"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/14"
)
application = res.json() Response
{
"id": 14,
"userId": 10,
"jobId": 180,
"status": "applied",
"coverLetter": "Facilis ago tabgo depopulo ab. Vesper comptus decretum calamitas corona patria. Adaugeo auxilium clamo perspiciatis labore at ultio.\n\nVelit dignissimos deputo virga sophismata demoror defessus nobis ducimus vester. Qui carcer peccatus traho contra aveho. Defessus autus territo.",
"appliedAt": "2025-06-03T10:11:45.768Z",
"lastUpdatedAt": "2025-06-11T12:10:01.533Z"
}