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

# List applications

> COMING SOON: This operation is a contract preview and is not currently available.

List applications owned by the calling account, newest first. Pagination
uses an opaque cursor that is bound to the selected filters.




## OpenAPI

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

    real-time feeds, geocoding services, and a contract preview for
    callback-driven

    job applications. Auto Apply is coming soon and is not available in beta or
    production.
  version: '2026-07-21'
  contact:
    name: Jobo Support
    url: https://jobo.world
    email: support@jobo.world
  license:
    name: Proprietary — see terms of service
    url: https://jobo.world/terms
  termsOfService: https://jobo.world/terms
servers:
  - url: https://connect.jobo.world
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Jobs
    description: Search and retrieve job listings
  - name: Feed
    description: Bulk job feeds and expiration tracking
  - name: Companies
    description: Company profiles and company-scoped job listings
  - name: Auto Apply
    description: >-
      Coming soon: profileless applications answered through signed, typed HTTPS
      callbacks
  - name: Locations
    description: Geocoding and location services
paths:
  /api/auto-apply/applications:
    get:
      tags:
        - Auto Apply
      summary: List applications
      description: >
        COMING SOON: This operation is a contract preview and is not currently
        available.


        List applications owned by the calling account, newest first. Pagination

        uses an opaque cursor that is bound to the selected filters.
      operationId: listAutoApplyApplications
      parameters:
        - name: status
          in: query
          description: Return only applications in this lifecycle state.
          schema:
            $ref: '#/components/schemas/AutoApplyApplicationStatus'
        - name: created_after
          in: query
          description: Include applications created at or after this UTC timestamp.
          schema:
            type: string
            format: date-time
        - name: created_before
          in: query
          description: Include applications created at or before this UTC timestamp.
          schema:
            type: string
            format: date-time
        - name: cursor
          in: query
          description: Opaque next_cursor from the preceding page.
          schema:
            type: string
        - name: limit
          in: query
          description: Number of applications to return.
          schema:
            type: integer
            default: 20
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Cursor-paged application summaries.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutoApplyApplicationList'
        '400':
          description: Invalid status, date range, or cursor.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '503':
          description: Auto Apply management endpoints are temporarily unavailable.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      x-codeSamples:
        - lang: cURL
          source: |
            curl -G "https://connect.jobo.world/api/auto-apply/applications" \
              -H "X-Api-Key: $JOBO_API_KEY" \
              --data-urlencode "limit=20"
components:
  schemas:
    AutoApplyApplicationStatus:
      type: string
      description: Current durable application state.
      enum:
        - queued
        - running
        - awaiting_answers
        - submitted
        - failed
        - canceled
    AutoApplyApplicationList:
      type: object
      required:
        - api_version
        - items
        - next_cursor
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        items:
          type: array
          items:
            $ref: '#/components/schemas/AutoApplyApplicationSummary'
        next_cursor:
          type: string
          nullable: true
          description: Opaque cursor for the next page, or null on the final page.
    ProblemDetails:
      type: object
      description: 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
        code:
          type: string
          nullable: true
          description: Stable machine-readable code for Auto Apply domain errors.
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
    AutoApplyApiVersion:
      type: string
      description: Version of the profileless Auto Apply API contract.
      enum:
        - '2026-07-21'
      example: '2026-07-21'
    AutoApplyApplicationSummary:
      type: object
      required:
        - api_version
        - id
        - job_id
        - apply_url
        - provider_id
        - provider_name
        - status
        - cancel_requested
        - status_updated_at
        - queued_at
        - started_at
        - submitted_at
        - failed_at
        - canceled_at
        - completed_at
        - created_at
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        id:
          type: string
          format: uuid
          description: Stable application ID.
        job_id:
          type: string
          nullable: true
          description: Supplied Jobo job ID, or null when apply_url was supplied directly.
        apply_url:
          type: string
          format: uri
          description: Resolved application URL.
        provider_id:
          type: string
          description: Stable provider identifier selected at intake.
        provider_name:
          type: string
          description: Provider display name captured at intake.
        status:
          $ref: '#/components/schemas/AutoApplyApplicationStatus'
        cancel_requested:
          type: boolean
          description: Whether cancellation has been requested.
        status_updated_at:
          type: string
          format: date-time
        queued_at:
          type: string
          format: date-time
        started_at:
          type: string
          format: date-time
          nullable: true
        submitted_at:
          type: string
          format: date-time
          nullable: true
        failed_at:
          type: string
          format: date-time
          nullable: true
        canceled_at:
          type: string
          format: date-time
          nullable: true
        completed_at:
          type: string
          format: date-time
          nullable: true
          description: submitted_at, failed_at, or canceled_at, whichever is set.
        created_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ProblemDetails'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````