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

# List tasks

> List the Tasks in a Project, newest first.

Every conversation under the Project, each with its own title and status (Running, Completed, etc.).


## OpenAPI

````yaml api-reference/openapi.json GET /tasks
openapi: 3.1.0
info:
  title: Biomni Public API — V0
  description: >-
    The public API for **Biomni** — the AI agent platform for clinical genomics
    (variant annotation, ClinVar lookups, PMID-cited literature, and project
    file drives). Create projects and Tasks, send messages to the agent, stream
    its replies, manage files, and check your usage — all from your own code.


    **Authentication**: send `Authorization: Bearer <your-api-key>`. The adapter
    forwards your key straight to Biomni; it never stores it.


    **Safe retries**: send `Idempotency-Key: <token>` on POST endpoints
    (`/projects`, `/tasks`, `/messages`, `/files/uploads`) so a retried request
    won't create a duplicate.
  version: 0.1.0
servers:
  - url: https://api.phylo.bio/api/v1
security: []
paths:
  /tasks:
    get:
      tags:
        - tasks
      summary: List tasks
      description: List the Tasks in a Project, newest first.
      operationId: list_tasks_tasks_get
      parameters:
        - name: project_id
          in: query
          required: true
          schema:
            type: string
            title: Project Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
            title: Limit
      responses:
        '200':
          description: Page of tasks.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskList'
              example:
                object: list
                data:
                  - id: sess_d9711ec9b477
                    object: task
                    created: 1779132780
                    status: completed
                    title: BRCA1 variant clinical report
                    platform: api
                  - id: sess_2719df714819
                    object: task
                    created: 1779131425
                    status: running
                    title: BRCA1 variant exploration — adapter demo
                    platform: api
                has_more: false
      security:
        - bearerAuth: []
components:
  schemas:
    TaskList:
      properties:
        object:
          type: string
          const: list
          title: Object
          default: list
        data:
          items:
            $ref: '#/components/schemas/Task'
          type: array
          title: Data
        has_more:
          type: boolean
          title: Has More
          default: false
      type: object
      required:
        - data
      title: TaskList
    Task:
      properties:
        id:
          type: string
          title: Id
        object:
          type: string
          const: task
          title: Object
          default: task
        created:
          type: integer
          title: Created
        status:
          type: string
          enum:
            - idle
            - running
            - completed
            - cancelled
            - failed
          title: Status
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        platform:
          type: string
          enum:
            - api
            - mcp
            - web
            - desktop
            - mobile
          title: Platform
          default: api
        review_status:
          anyOf:
            - type: string
              enum:
                - running
                - done
                - failed
            - type: 'null'
          title: Review Status
        review_error:
          anyOf:
            - type: string
            - type: 'null'
          title: Review Error
      type: object
      required:
        - id
        - created
        - status
      title: Task
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Requires an API key. See the Authentication guide.

````