> ## 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.

# Get a session

> Fetch a session's persisted metadata — lifecycle `state`, `mode`, provider, and timestamps. Form fields are only carried on the create and answers responses, not here.



## OpenAPI

````yaml /openapi.yaml get /api/auto-apply/sessions/{id}
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 Profiles
    description: Resume-first applicant profiles that power automated applications
  - name: Auto Apply Applications
    description: >-
      Fully automated job applications — submit asynchronously and poll for the
      outcome
  - name: Auto Apply Sessions
    description: Interactive, step-by-step application sessions with full answer control
  - name: Locations
    description: Geocoding and location services
paths:
  /api/auto-apply/sessions/{id}:
    get:
      tags:
        - Auto Apply Sessions
      summary: Get a session
      description: >-
        Fetch a session's persisted metadata — lifecycle `state`, `mode`,
        provider, and timestamps. Form fields are only carried on the create and
        answers responses, not here.
      operationId: getAutoApplySession
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Session ID
      responses:
        '200':
          description: Session metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionInfo'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Session not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    SessionInfo:
      type: object
      description: >-
        Persisted session metadata returned by `GET
        /api/auto-apply/sessions/{id}`. Form fields are only carried on the
        create/answers responses.
      properties:
        id:
          type: string
          format: uuid
          description: Session identifier.
          example: 6f1d2b3c-4a5e-4f60-9b7a-8c9d0e1f2a3b
        state:
          type: string
          enum:
            - pending
            - running
            - completed
            - failed
            - closed
          description: Session lifecycle state.
          example: running
        mode:
          type: string
          enum:
            - interactive
            - automated
          description: >-
            `interactive` for sessions driven through the sessions API,
            `automated` for the browser session behind an application run.
          example: interactive
        job_url:
          type: string
          description: The job application URL the session was started with.
          example: https://boards.greenhouse.io/acme/jobs/4567890
        provider_id:
          type: string
          nullable: true
          description: Detected ATS provider identifier, or null if not yet detected.
          example: greenhouse
        provider_name:
          type: string
          nullable: true
          description: Human-readable ATS provider name, or null if not yet detected.
          example: Greenhouse
        current_url:
          type: string
          nullable: true
          description: The URL the session's browser was last on.
          example: https://boards.greenhouse.io/acme/jobs/4567890
        profile_id:
          type: string
          format: uuid
          nullable: true
          description: >-
            The profile used, when the session belongs to an automated
            application run.
          example: null
        started_at:
          type: string
          format: date-time
          description: UTC timestamp the session started.
          example: '2026-07-05T10:15:00Z'
        completed_at:
          type: string
          format: date-time
          nullable: true
          description: UTC timestamp the session finished, or null while it is still open.
          example: null
    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
  responses:
    Unauthorized:
      description: Missing or invalid API key
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````