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

# List sessions

> Return analyzed production sessions, newest first.

Requires `sessions:read`.

Combine qualification, intent, booking, date, and email filters to build routing
or synchronization cohorts. Status filters accept comma-separated values.

<Note>
  Results include analyzed production sessions only. Use the session `id` as an
  idempotency key in downstream systems.
</Note>


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/sessions
openapi: 3.1.0
info:
  title: Hobbes API
  description: >

    Use the Hobbes API to read your organization's analyzed demo sessions,

    prospects, accounts, transcripts, and funnel metrics, and to create and
    manage

    personalized Custom Links.


    **Authentication**: create an API key in Settings → API Keys, then send it

    as `Authorization: Bearer <key>` (or `x-api-key: <key>`). Keys are

    org-scoped; responses only ever contain your organization's data.


    **Scopes**: keys carry scopes (`sessions:read`, `people:read`,

    `accounts:read`, `analytics:read`, `transcripts:read`, `custom_links:read`,

    `custom_links:write`). `custom_links:write` also satisfies read access. Raw

    transcript access is a separate opt-in scope with a daily quota. Existing
    API

    keys do not receive Custom Link scopes automatically.


    **Rate limits**: keys allow 120 requests per minute by default. Responses

    include `X-RateLimit-Limit` and `X-RateLimit-Remaining`; 429 responses
    include

    `Retry-After`. Transcript access has a separate quota of 2,000 reads per

    organization per UTC day. Custom Link mutations are limited to 10 requests
    per

    minute per organization. Creation and thumbnail rendering also use weighted

    hourly and daily organization quotas, so one request containing 500 links is

    one HTTP request but consumes up to 500 creation and 500 render units.


    **Support**: every response carries an `X-Request-ID` header. Include it
    when

    reporting an issue so we can find the exact request in our logs.


    **Stability**: changes within v1 are additive only. Fields may be added to

    responses; existing fields are never removed or renamed.
  version: 1.0.0
servers:
  - url: https://api-us.hihobbes.com
    description: Production
security:
  - bearer: []
  - apiKeyHeader: []
tags:
  - name: Sessions
    description: Analyzed demo sessions and their transcripts.
  - name: People
    description: Prospect profiles aggregated across sessions.
  - name: Accounts
    description: Company-level engagement rollups by email domain.
  - name: Metrics
    description: Aggregate funnel performance over a trailing window.
  - name: Custom Links
    description: Create and manage personalized links.
  - name: Custom Link Jobs
    description: Poll, cancel, and retry asynchronous Custom Link work.
  - name: Custom Link Campaigns
    description: Organize Custom Links into campaigns.
paths:
  /api/v1/sessions:
    get:
      tags:
        - Sessions
      summary: List sessions
      description: >-
        Return analyzed production sessions, newest first. Combine filters to
        find qualified, high-intent, or booked sessions.
      operationId: v1_list_sessions
      parameters:
        - name: date_from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by session start time (ISO 8601)
            title: Date From
          description: Filter by session start time (ISO 8601)
        - name: date_to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            description: Filter by session start time (ISO 8601)
            title: Date To
          description: Filter by session start time (ISO 8601)
        - name: qualification_status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: qualified | unqualified (comma-separated)
            title: Qualification Status
          description: qualified | unqualified (comma-separated)
        - name: buying_intent
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: high | medium | low | none (comma-separated)
            title: Buying Intent
          description: high | medium | low | none (comma-separated)
        - name: booked_status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: booked | not_booked (comma-separated)
            title: Booked Status
          description: booked | not_booked (comma-separated)
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Partial email match
            title: Search
          description: Partial email match
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
            description: Number of records to return. Defaults to 50 and cannot exceed 200.
          description: Number of records to return. Defaults to 50 and cannot exceed 200.
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000000
            minimum: 0
            default: 0
            title: Offset
            description: >-
              Zero-based number of records to skip. Use with `pagination.total`
              to request the next page.
          description: >-
            Zero-based number of records to skip. Use with `pagination.total` to
            request the next page.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionsListResponse'
          headers:
            X-Request-ID:
              description: Unique request identifier to include in support requests.
              schema:
                type: string
                example: req_01JABCDEF23456789
            X-RateLimit-Limit:
              description: Request limit for this key in the current 60-second window.
              schema:
                type: integer
                example: 120
            X-RateLimit-Remaining:
              description: Requests remaining for this key in the current window.
              schema:
                type: integer
                example: 119
        '401':
          description: API key required or invalid.
          headers:
            X-Request-ID:
              description: Unique request identifier to include in support requests.
              schema:
                type: string
                example: req_01JABCDEF23456789
          content:
            application/json:
              schema:
                type: object
                required:
                  - detail
                properties:
                  detail:
                    type: string
                    example: API key required or invalid.
        '403':
          description: API key does not include the required scope.
          headers:
            X-Request-ID:
              description: Unique request identifier to include in support requests.
              schema:
                type: string
                example: req_01JABCDEF23456789
          content:
            application/json:
              schema:
                type: object
                required:
                  - detail
                properties:
                  detail:
                    type: string
                    example: API key does not include the required scope.
        '422':
          description: A path, query, header, or request field failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          headers:
            X-Request-ID:
              description: Unique request identifier to include in support requests.
              schema:
                type: string
                example: req_01JABCDEF23456789
        '429':
          description: Rate limit or organization quota exceeded.
          headers:
            X-Request-ID:
              description: Unique request identifier to include in support requests.
              schema:
                type: string
                example: req_01JABCDEF23456789
            X-RateLimit-Limit:
              description: Request limit for this key in the current 60-second window.
              schema:
                type: integer
                example: 120
            X-RateLimit-Remaining:
              description: Requests remaining for this key in the current window.
              schema:
                type: integer
                example: 119
            Retry-After:
              description: Seconds to wait before retrying.
              schema:
                type: integer
                example: 30
            X-RateLimit-Reset:
              description: Unix timestamp when the limiting window resets.
              schema:
                type: integer
          content:
            application/json:
              schema:
                type: object
                required:
                  - detail
                properties:
                  detail:
                    type: string
                    example: Rate limit or organization quota exceeded.
components:
  schemas:
    SessionsListResponse:
      properties:
        sessions:
          items:
            $ref: '#/components/schemas/SessionListItem'
          type: array
          title: Sessions
        pagination:
          $ref: '#/components/schemas/Pagination'
      type: object
      required:
        - sessions
        - pagination
      title: SessionsListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SessionListItem:
      properties:
        id:
          type: string
          title: Id
          description: Stable Hobbes session UUID.
          examples:
            - 018f3f6a-0d7b-7f56-bb2a-54c91e57a202
        displayId:
          anyOf:
            - type: string
            - type: 'null'
          title: Displayid
          description: Human-readable session identifier shown in Hobbes.
          examples:
            - SES-1042
        startTime:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Starttime
          description: Session start time in ISO 8601 format.
          examples:
            - '2026-07-10T18:42:16Z'
        endTime:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Endtime
          description: Session end time in ISO 8601 format.
          examples:
            - '2026-07-10T18:53:04Z'
        sessionType:
          anyOf:
            - type: string
            - type: 'null'
          title: Sessiontype
          description: Session channel or experience type.
          examples:
            - voice
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: Prospect email captured during the session.
          examples:
            - maya@acme.example
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Prospect name captured during the session.
          examples:
            - Maya Chen
        business:
          anyOf:
            - type: string
            - type: 'null'
          title: Business
          description: Prospect company name.
          examples:
            - Acme
        qualificationStatus:
          title: Qualificationstatus
          description: 'Effective person qualification: `qualified` or `unqualified`.'
          examples:
            - qualified
          type: string
          enum:
            - qualified
            - unqualified
          default: unqualified
        buyingIntent:
          anyOf:
            - type: string
            - type: 'null'
          title: Buyingintent
          description: >-
            Detected buying intent. Common values are `high`, `medium`, `low`,
            and `none`.
          examples:
            - high
        bookedStatus:
          anyOf:
            - type: string
            - type: 'null'
          title: Bookedstatus
          description: >-
            Whether the session produced a booking. Common values are `booked`
            and `not_booked`.
          examples:
            - booked
        sessionStatus:
          anyOf:
            - type: string
            - type: 'null'
          title: Sessionstatus
          description: Latest processing or business status for the session.
          examples:
            - completed
        sentiment:
          anyOf:
            - type: string
            - type: 'null'
          title: Sentiment
          description: Overall prospect sentiment detected in the session.
          examples:
            - positive
        engagementLevel:
          anyOf:
            - type: string
            - type: 'null'
          title: Engagementlevel
          description: Detected engagement level.
          examples:
            - high
        primaryIntent:
          anyOf:
            - type: string
            - type: 'null'
          title: Primaryintent
          description: Primary goal inferred from the conversation.
          examples:
            - Evaluate enterprise security
        summaryMarkdown:
          anyOf:
            - type: string
            - type: 'null'
          title: Summarymarkdown
          description: Markdown summary of the session.
          examples:
            - >-
              Maya evaluated Acme's security requirements and booked a technical
              follow-up.
        utmSource:
          anyOf:
            - type: string
            - type: 'null'
          title: Utmsource
          description: Acquisition source captured from UTM parameters.
          examples:
            - linkedin
        device:
          anyOf:
            - type: string
            - type: 'null'
          title: Device
          description: Visitor device category when available.
          examples:
            - desktop
        geoCountry:
          anyOf:
            - type: string
            - type: 'null'
          title: Geocountry
          description: Visitor country when available.
          examples:
            - US
        personId:
          anyOf:
            - type: string
            - type: 'null'
          title: Personid
          description: Person UUID associated with the session email.
        qualificationRationale:
          anyOf:
            - type: string
            - type: 'null'
          title: Qualificationrationale
          description: >-
            One- or two-sentence rationale for the effective person
            qualification.
        qualificationSource:
          type: string
          enum:
            - automatic
            - manual
          title: Qualificationsource
          description: '`automatic` or `manual`.'
          default: automatic
        qualificationAssessedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Qualificationassessedat
        qualificationRubricVersionId:
          anyOf:
            - type: string
            - type: 'null'
          title: Qualificationrubricversionid
        overallIntent:
          type: string
          enum:
            - low
            - medium
            - high
          title: Overallintent
          description: Recency- and frequency-weighted intent across the person's sessions.
          default: low
        intentScore:
          type: number
          maximum: 3
          minimum: 0
          title: Intentscore
          default: 0
        intentCalculatedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Intentcalculatedat
      type: object
      required:
        - id
      title: SessionListItem
    Pagination:
      properties:
        total:
          type: integer
          title: Total
          description: Total records matching the request.
          examples:
            - 248
        limit:
          type: integer
          title: Limit
          description: Maximum records returned in this page.
          examples:
            - 50
        offset:
          type: integer
          title: Offset
          description: Zero-based number of matching records skipped.
          examples:
            - 0
      type: object
      required:
        - total
        - limit
        - offset
      title: Pagination
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      description: Hobbes API key with the `hb_live_` prefix.
    apiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: Alternative to the Bearer authorization header.

````