get_application
curl --request GET \
--url https://rest.hotfix.jobs/v1/employer/applications/{application_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/applications/{application_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/applications/{application_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "2c8f0a1e-4b3d-4e91-9c7a-1f6b8d2e0a11",
"applicant_name": "Jordan Lee",
"applicant_email": "jordan@example.com",
"job_id": "9a1b2c3d-4e5f-6789-abcd-ef0123456789",
"job_title": "Staff engineer",
"status": "new",
"knockout": false,
"applied_at": "2026-09-20T18:22:01+00:00",
"archived_at": null,
"has_resume": true,
"answers": {
"Why this role?": "I ship."
},
"also_applied": []
}Applications
get_application
One hosted application, including answers. Send Accept: text/markdown for the markdown form. MCP tool: get_application. GET the resume path with a session or an API key. See resume. Accept: text/markdown returns the same document as get_application_markdown on MCP.
GET
/
v1
/
employer
/
applications
/
{application_id}
get_application
curl --request GET \
--url https://rest.hotfix.jobs/v1/employer/applications/{application_id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rest.hotfix.jobs/v1/employer/applications/{application_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://rest.hotfix.jobs/v1/employer/applications/{application_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "2c8f0a1e-4b3d-4e91-9c7a-1f6b8d2e0a11",
"applicant_name": "Jordan Lee",
"applicant_email": "jordan@example.com",
"job_id": "9a1b2c3d-4e5f-6789-abcd-ef0123456789",
"job_title": "Staff engineer",
"status": "new",
"knockout": false,
"applied_at": "2026-09-20T18:22:01+00:00",
"archived_at": null,
"has_resume": true,
"answers": {
"Why this role?": "I ship."
},
"also_applied": []
}