> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hotfix.jobs/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Product noun is jobs.
> MCP at https://rest.hotfix.jobs/mcp is the hiring contract for agents with a company API key.
> Do not invent unpublished REST, hiring stats, or webhooks.
> Do not mention Greenhouse, Ashby, Quick Apply, or claim.
> Creating a draft, offer, or booking link does not send email.

# list_applications

> List hosted applications for this company. Knockout failures stay hidden by default. status defaults to new. MCP tool: list_applications.



## OpenAPI

````yaml /openapi.json get /v1/employer/applications
openapi: 3.1.0
info:
  title: Hotfix hiring API
  version: 1.0.0
  description: >-
    Employer hiring surface under /v1/employer. Most routes take an employer
    session Bearer token. GET resume also accepts a company API key (hf_…).
    Agents should prefer MCP at https://rest.hotfix.jobs/mcp with the same key.
    This is not the public catalog spec at hotfix.jobs/openapi.json, and it is
    not a dump of rest.hotfix.jobs/openapi.json.
servers:
  - url: https://rest.hotfix.jobs
    description: Production
security: []
tags:
  - name: Applications
  - name: Jobs
  - name: Interviews
  - name: Offers
  - name: Mail
  - name: Automations
paths:
  /v1/employer/applications:
    get:
      tags:
        - Applications
      summary: list_applications
      description: >-
        List hosted applications for this company. Knockout failures stay hidden
        by default. status defaults to new. MCP tool: list_applications.
      operationId: list_applications
      parameters:
        - name: status
          in: query
          required: false
          description: all, new, considering, interviewing, hired, or rejected.
          schema:
            type: string
            default: new
        - name: view
          in: query
          required: false
          description: >-
            all, interviews (booked and not started), or offers (pending and not
            expired).
          schema:
            type: string
        - name: visibility
          in: query
          required: false
          description: active, archived, or all. Archive is not a status.
          schema:
            type: string
            default: active
        - name: job_id
          in: query
          required: false
          description: Limit to one job. UUID.
          schema:
            type: string
        - name: q
          in: query
          required: false
          description: Search name or email.
          schema:
            type: string
        - name: hide_knockouts
          in: query
          required: false
          description: Knockout failures stay hidden when true.
          schema:
            type: boolean
            default: 'true'
        - name: since
          in: query
          required: false
          description: >-
            ISO-8601 datetime. Only applications with applied_at on or after
            this time.
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
              example:
                data:
                  - 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: []
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Employer session JWT from Better Auth.

````