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

# Run a fully automated application using a profile



## OpenAPI

````yaml /openapi.yaml post /api/auto-apply/run
openapi: 3.1.0
info:
  title: Jobo Enterprise API
  description: >
    The Jobo Enterprise API provides programmatic access to job listings,
    intelligent search,

    real-time feeds, automated job applications, and geocoding services.
  version: 1.0.0
  contact:
    name: Jobo Support
    url: https://jobo.world
    email: support@jobo.world
servers:
  - url: https://connect.jobo.world
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Jobs Search
    description: Search and retrieve job listings
  - name: Jobs Feed
    description: Bulk job feeds and expiration tracking
  - name: Career Sites Feed
    description: Bulk feed of newly discovered career sites with enriched company profiles
  - name: Companies
    description: Company profiles and company-scoped job listings
  - name: Auto Apply
    description: Automated job application sessions
  - name: Auto Apply Profiles
    description: Manage applicant profiles for auto-apply
  - name: Locations
    description: Geocoding and location services
paths:
  /api/auto-apply/run:
    post:
      tags:
        - Auto Apply
      summary: Run a fully automated application using a profile
      operationId: runAutoApply
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunAutoApplyRequest'
      responses:
        '200':
          description: Auto-apply execution result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunAutoApplyResponse'
        '400':
          description: Invalid request or run failed
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/RunAutoApplyResponse'
                  - $ref: '#/components/schemas/ProblemDetails'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    RunAutoApplyRequest:
      type: object
      required:
        - profile_id
        - apply_url
      properties:
        profile_id:
          type: string
          format: uuid
        apply_url:
          type: string
    RunAutoApplyResponse:
      type: object
      properties:
        session_id:
          type: string
          format: uuid
        profile_id:
          type: string
          format: uuid
        apply_url:
          type: string
        provider_id:
          type: string
        provider_display_name:
          type: string
        status:
          type: string
        success:
          type: boolean
        error:
          type: string
          nullable: true
        steps_completed:
          type: integer
        fields_filled:
          type: integer
        duration_ms:
          type: integer
          format: int64
        step_log:
          type: array
          items:
            $ref: '#/components/schemas/AutoApplyStepLog'
    ProblemDetails:
      type: object
      description: RFC 7807 problem details object returned for error responses.
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
    AutoApplyStepLog:
      type: object
      properties:
        step:
          type: integer
        action:
          type: string
        status:
          type: string
        fields_count:
          type: integer
        error:
          type: string
          nullable: true
        timestamp:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````