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

# List Dex conversation threads

> Returns the most recent bounded web-channel task bindings grouped into Dex threads. truncated reports when older bindings were omitted; creditTotalIsFinal is false for a chain cut by that boundary.



## OpenAPI

````yaml /openapi.json get /projects/{projectId}/agents/dex/threads
openapi: 3.1.0
info:
  title: DevTune API
  version: 2.0.0
  description: >-
    API for programmatic access to your AI visibility data, webhook
    subscriptions, and automation workflows. Use this API to integrate DevTune
    data into CI/CD pipelines, BI tools, AI agents, and operational systems.
servers:
  - url: https://devtune.ai/api/v2
    description: Production
security:
  - bearerAuth: []
paths:
  /projects/{projectId}/agents/dex/threads:
    get:
      summary: List Dex conversation threads
      description: >-
        Returns the most recent bounded web-channel task bindings grouped into
        Dex threads. truncated reports when older bindings were omitted;
        creditTotalIsFinal is false for a chain cut by that boundary.
      operationId: listDexConversationThreads
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Bounded Dex conversation history
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/DexConversationThreadPage'
                  meta:
                    $ref: '#/components/schemas/Meta'
                required:
                  - data
                  - meta
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '402':
          description: Dex conversations are not available for this account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
        '429':
          $ref: '#/components/responses/RateLimitExceededError'
components:
  schemas:
    DexConversationThreadPage:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/DexConversationThread'
        truncated:
          type: boolean
          description: >-
            True when older task bindings exist outside the bounded
            recent-history window.
      required:
        - items
        - truncated
    Meta:
      type: object
      properties:
        timestamp:
          type: string
          format: date-time
        projectId:
          type: string
          format: uuid
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
      required:
        - error
        - message
        - status
    DexConversationThread:
      type: object
      properties:
        creditTotal:
          type: number
          minimum: 0
        creditTotalIsFinal:
          type: boolean
          description: >-
            False when a settlement is pending or the bounded history cut an
            older task from this thread.
        currentTaskId:
          type: string
          format: uuid
        lastMessageAt:
          type: string
          format: date-time
        state:
          type: string
          enum:
            - active
            - closed
            - expired
        taskIds:
          type: array
          items:
            type: string
            format: uuid
        threadId:
          type: string
          format: uuid
        title:
          type:
            - string
            - 'null'
        updatedAt:
          type: string
          format: date-time
      required:
        - creditTotal
        - creditTotalIsFinal
        - currentTaskId
        - lastMessageAt
        - state
        - taskIds
        - threadId
        - title
        - updatedAt
  responses:
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ForbiddenError:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFoundError:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimitExceededError:
      description: Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          $ref: '#/components/headers/X-RateLimit-Limit'
        X-RateLimit-Remaining:
          $ref: '#/components/headers/X-RateLimit-Remaining'
        X-RateLimit-Reset:
          $ref: '#/components/headers/X-RateLimit-Reset'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  headers:
    X-RateLimit-Limit:
      description: Maximum requests per window
      schema:
        type: integer
    X-RateLimit-Remaining:
      description: Requests remaining in current window
      schema:
        type: integer
    X-RateLimit-Reset:
      description: Unix timestamp when the window resets
      schema:
        type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key with dtk_live_ prefix. Obtain it from API Keys in the account
        sidebar. New keys start with all supported scopes selected for the
        chosen project, and you can narrow them to specific read/write scopes as
        needed.

````