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

# Research runs currently in flight

> The token owner's research runs still in flight (status queued, planning, plan_review, running, generating_csv or uploading), newest first, capped at 50. Finished runs are not listed — read them individually with GET /business/research/runs/{runId}. `prompt` is the text the run was started with and `turnCount` how many research turns it has taken so far. Rate limit: 30 requests per minute, 1000 per day.

Errors:
- `429` `RATE_LIMITED` — Per-user quota for this endpoint family exceeded (30 per minute, 1000 per day); retry after the Retry-After / RateLimit-Reset seconds.

Requires one of the following token scopes: research.



## OpenAPI

````yaml /openapi.json get /business/research/runs
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/research/runs:
    get:
      tags:
        - Research
      summary: Research runs currently in flight
      description: >-
        The token owner's research runs still in flight (status queued,
        planning, plan_review, running, generating_csv or uploading), newest
        first, capped at 50. Finished runs are not listed — read them
        individually with GET /business/research/runs/{runId}. `prompt` is the
        text the run was started with and `turnCount` how many research turns it
        has taken so far. Rate limit: 30 requests per minute, 1000 per day.


        Errors:

        - `429` `RATE_LIMITED` — Per-user quota for this endpoint family
        exceeded (30 per minute, 1000 per day); retry after the Retry-After /
        RateLimit-Reset seconds.


        Requires one of the following token scopes: research.
      operationId: listResearchRuns
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                properties:
                  runs:
                    type: array
                    items:
                      type: object
                      properties:
                        runId:
                          type:
                            - string
                            - 'null'
                        prompt:
                          type:
                            - string
                            - 'null'
                        status:
                          type:
                            - string
                            - 'null'
                          enum:
                            - queued
                            - planning
                            - plan_review
                            - running
                            - generating_csv
                            - uploading
                            - null
                        turnCount:
                          type: integer
                        createdAt:
                          type:
                            - string
                            - 'null'
                        updatedAt:
                          type:
                            - string
                            - 'null'
                      required:
                        - runId
                        - prompt
                        - status
                        - turnCount
                        - createdAt
                        - updatedAt
                required:
                  - runs
              example:
                runs:
                  - runId: 68a205cc9c41d20014b40888
                    prompt: >-
                      Series A fintech companies in Europe hiring a Head of
                      Sales
                    status: running
                    turnCount: 7
                    createdAt: '2026-08-25T10:00:00.000Z'
                    updatedAt: '2026-08-25T10:03:12.000Z'
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````