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

> Auto Apply is an invite-only beta.

Lists this account's connected mailboxes. Secrets are never included.




## OpenAPI

````yaml /openapi.yaml get /api/auto-apply/mailboxes
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 callback-driven job applications.

    Auto Apply is an invite-only beta; accounts without access receive 403

    auto_apply_not_enabled from create.
  version: '2026-08-12'
  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/mailboxes:
    get:
      tags:
        - Auto Apply
      summary: List mailboxes
      description: |
        Auto Apply is an invite-only beta.

        Lists this account's connected mailboxes. Secrets are never included.
      operationId: listAutoApplyMailboxes
      responses:
        '200':
          description: The account's mailboxes.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MailboxList'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
      x-codeSamples:
        - lang: cURL
          source: |
            curl "https://connect.jobo.world/api/auto-apply/mailboxes" \
              -H "X-Api-Key: $JOBO_API_KEY"
components:
  schemas:
    MailboxList:
      type: object
      required:
        - api_version
        - mailboxes
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        mailboxes:
          type: array
          items:
            $ref: '#/components/schemas/Mailbox'
    AutoApplyApiVersion:
      type: string
      description: Version of the profileless Auto Apply API contract.
      enum:
        - '2026-08-12'
      example: '2026-08-12'
    Mailbox:
      type: object
      required:
        - api_version
        - id
        - provider
        - address
        - status
        - created_at
        - updated_at
      properties:
        api_version:
          $ref: '#/components/schemas/AutoApplyApiVersion'
        id:
          type: string
          format: uuid
        provider:
          type: string
          enum:
            - imap
            - outlook
        address:
          type: string
          format: email
        status:
          type: string
          enum:
            - pending
            - connected
            - error
            - disabled
          description: >-
            pending = outlook mailbox awaiting consent; error = the last
            connectivity check failed (see last_error).
        imap_host:
          type: string
          nullable: true
        imap_port:
          type: integer
          nullable: true
        imap_security:
          type: string
          nullable: true
        username:
          type: string
          nullable: true
        authorization_url:
          type: string
          format: uri
          nullable: true
          description: >-
            Only on a pending outlook mailbox: open this URL (or send it to the
            mailbox owner) to grant consent via Microsoft.
        last_error:
          type: string
          nullable: true
        connected_at:
          type: string
          format: date-time
          nullable: true
        last_checked_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    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'
    ApiRateLimitError:
      type: object
      description: API-key request-window rejection returned by rate-limit middleware.
      required:
        - error
        - detail
        - group
        - retry_after_seconds
      properties:
        error:
          type: string
          example: Rate limit exceeded
        detail:
          type: string
        group:
          type: string
          example: AutoApply
        retry_after_seconds:
          type: integer
          minimum: 0
          nullable: true
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ProblemDetails'
    TooManyRequests:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          description: Seconds to wait before retrying.
          schema:
            type: integer
            minimum: 0
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/ProblemDetails'
        application/json:
          schema:
            $ref: '#/components/schemas/ApiRateLimitError'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key provided by Jobo

````