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

# Check apply endpoint availability

> Verifies the availability and status of the apply endpoint without submitting data.



## OpenAPI

````yaml /api-reference/openapi.json head /apply/{token}
openapi: 3.0.3
info:
  title: JobAffinity REST API
  version: '1.12'
  description: >
    JobAffinity REST API for managing jobs, candidates, applications, and
    recruitment processes.


    ## Authentication

    All endpoints require HTTP Basic Authentication.


    ## Versioning

    Current version: 1.12


    See `/restapi/changelog` for version history and changes.
  contact:
    name: JobAffinity API Support
servers:
  - url: https://jobaffinity.fr/restapi/v1
    description: REST API v1
  - url: https://jobaffinity.fr/restapi
    description: REST API root (for changelog)
security:
  - basicAuth: []
tags:
  - name: API Info
    description: API metadata and changelog
  - name: Jobs
    description: Job listings and details
  - name: Candidates
    description: Candidate information
  - name: Applications
    description: Job applications
  - name: Processes
    description: Recruitment processes and steps
  - name: Notes
    description: Candidate notes
  - name: Questionnaires
    description: Questionnaire answers
  - name: Webhooks
    description: Webhook tasks
  - name: Job Application Submission
    description: >-
      Submit candidate applications to a job posting via the apply URL provided
      in the job feed. The authentication token is embedded in the URL — no
      additional credentials are required.
paths:
  /apply/{token}:
    servers:
      - url: https://jobaffinity.fr
        description: JobAffinity apply endpoint
    head:
      tags:
        - Job Application Submission
      summary: Check apply endpoint availability
      description: >-
        Verifies the availability and status of the apply endpoint without
        submitting data.
      operationId: checkApplyEndpoint
      parameters:
        - name: token
          in: path
          required: true
          description: >-
            Authentication token embedded in the apply URL provided by the job
            feed
          schema:
            type: string
      responses:
        '200':
          description: Endpoint is available
        '404':
          description: Apply URL not found or token invalid
      security: []
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication with API credentials

````