Activity #302
User #200 applied (interview) Job #13
4/19/2026, 4:35:07 PM
Overview
applications / #302
User #200 applied (interview) Job #13
4/19/2026, 4:35:07 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/302" ); 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/302"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/302"
)
application = res.json() Response
{
"id": 302,
"userId": 200,
"jobId": 13,
"status": "interview",
"coverLetter": "Id ascit cohaero complectus abduco templum nobis capitulus coerceo. Aestas celebrer caput pectus antea tamen defungo eveniet curis clam. Qui auctor coruscus asporto.",
"appliedAt": "2026-04-19T16:35:07.539Z",
"lastUpdatedAt": "2026-05-07T02:51:24.138Z"
}