Activity #376
User #243 applied (interview) Job #87
5/20/2026, 11:06:24 PM
Overview
applications / #376
User #243 applied (interview) Job #87
5/20/2026, 11:06:24 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/376" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/376" ); 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/376"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/376"
)
application = res.json() Response
{
"id": 376,
"userId": 243,
"jobId": 87,
"status": "interview",
"coverLetter": "Adsidue cupio avarus absum a. Textilis necessitatibus fugit eos vinitor tergo sulum comis tollo vulgivagus. Canonicus nisi debilito cultura accusamus trucido decet.",
"appliedAt": "2026-05-20T23:06:24.544Z",
"lastUpdatedAt": "2026-05-21T18:29:01.228Z"
}