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

# Poll a smart-column run

> Progress of one smart-column run: the `jobId` returned by create, rerun, or a prompt edit. `status` moves from `pending` to `processing` and ends as `completed`, `partially_completed` (some rows failed), `failed` or `cancelled` (superseded by a newer run or a prompt edit). `processedRows`, `successfulRows` and `failedRows` count against `totalRows`, and `creditsUsed` is what the run has consumed so far at `creditsPerRow`. `mode` says why the run exists: `initial` for the column's first run, `all` or `new_only` for a rerun, `refresh` for the re-run a prompt edit starts, `single_row` for an automation. Poll every few seconds until the status is terminal; the values are then on `GET /business/lists/{listId}/rows` under `columnValues[columnId]`. Free to call.

Errors:
- `404` `LIST_NOT_FOUND` — No list with that id belongs to you.
- `404` `JOB_NOT_FOUND` — No run with that jobId exists on this list.
- `422` `VALIDATION_FAILED` — The path, query or body failed validation; `param` names the offending field and `message` says why.
- `429` `RATE_LIMITED` — More than 120 requests per minute or 10,000 per day on the lists bucket, which every /business/lists endpoint shares; retry after Retry-After.
- `500` `UNEXPECTED_ERROR` — The request could not be completed; quote request_id to support.

Requires one of the following token scopes: lists.



## OpenAPI

````yaml /openapi.json get /business/lists/{listId}/smart-columns/{jobId}/status
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/lists/{listId}/smart-columns/{jobId}/status:
    get:
      tags:
        - Smart columns
      summary: Poll a smart-column run
      description: >-
        Progress of one smart-column run: the `jobId` returned by create, rerun,
        or a prompt edit. `status` moves from `pending` to `processing` and ends
        as `completed`, `partially_completed` (some rows failed), `failed` or
        `cancelled` (superseded by a newer run or a prompt edit).
        `processedRows`, `successfulRows` and `failedRows` count against
        `totalRows`, and `creditsUsed` is what the run has consumed so far at
        `creditsPerRow`. `mode` says why the run exists: `initial` for the
        column's first run, `all` or `new_only` for a rerun, `refresh` for the
        re-run a prompt edit starts, `single_row` for an automation. Poll every
        few seconds until the status is terminal; the values are then on `GET
        /business/lists/{listId}/rows` under `columnValues[columnId]`. Free to
        call.


        Errors:

        - `404` `LIST_NOT_FOUND` — No list with that id belongs to you.

        - `404` `JOB_NOT_FOUND` — No run with that jobId exists on this list.

        - `422` `VALIDATION_FAILED` — The path, query or body failed validation;
        `param` names the offending field and `message` says why.

        - `429` `RATE_LIMITED` — More than 120 requests per minute or 10,000 per
        day on the lists bucket, which every /business/lists endpoint shares;
        retry after Retry-After.

        - `500` `UNEXPECTED_ERROR` — The request could not be completed; quote
        request_id to support.


        Requires one of the following token scopes: lists.
      operationId: getSmartColumnJobStatus
      parameters:
        - name: listId
          in: path
          required: true
          description: Id of the list that owns the smart column.
          schema:
            type: string
            description: Id of the list that owns the smart column.
        - name: jobId
          in: path
          required: true
          description: >-
            Id of the smart-column run to poll, as returned in `jobId` by the
            create or rerun call that started it.
          schema:
            type: string
            description: >-
              Id of the smart-column run to poll, as returned in `jobId` by the
              create or rerun call that started it.
      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
                required:
                  - job
                properties:
                  job:
                    type: object
                    required:
                      - id
                      - status
                      - mode
                      - runOn
                      - totalRows
                      - processedRows
                      - successfulRows
                      - failedRows
                      - creditsUsed
                      - creditsPerRow
                      - createdAt
                      - startedAt
                      - completedAt
                      - cancelledAt
                    properties:
                      id:
                        type: string
                        description: Id of this run — the jobId create or rerun returned.
                      status:
                        type: string
                        enum:
                          - pending
                          - processing
                          - completed
                          - failed
                          - partially_completed
                          - cancelled
                        description: >-
                          pending and processing are in progress; completed,
                          partially_completed (some rows failed), failed and
                          cancelled (superseded by a newer run or a prompt edit)
                          are terminal.
                      mode:
                        type: string
                        enum:
                          - initial
                          - all
                          - new_only
                          - refresh
                          - single_row
                        description: >-
                          Why the run exists: initial (column creation), all /
                          new_only (rerun), refresh (prompt edit), single_row
                          (automation).
                      runOn:
                        type: string
                        enum:
                          - first_1
                          - first_10
                          - first_100
                          - first_1000
                          - all
                        description: Row budget the run was started with.
                      totalRows:
                        type: integer
                        description: Rows the run covers.
                      processedRows:
                        type: integer
                        description: Rows finished so far (successful + failed).
                      successfulRows:
                        type: integer
                        description: Rows that received a value.
                      failedRows:
                        type: integer
                        description: Rows the engine could not compute.
                      creditsUsed:
                        type: integer
                        description: Credits consumed by this run so far.
                      creditsPerRow:
                        type: integer
                        description: >-
                          Credits charged per computed row at the rate that
                          applied when the run started.
                      createdAt:
                        type: string
                        format: date-time
                        description: When the run was created.
                      startedAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        description: When processing began; null while pending.
                      completedAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        description: >-
                          When the run finished; null until then and for a
                          cancelled run.
                      cancelledAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
                        description: >-
                          When the run was cancelled by a newer run or a prompt
                          edit; null otherwise.
              example:
                job:
                  id: 68a1f6109c41d20014b3ec21
                  status: processing
                  mode: initial
                  runOn: first_100
                  totalRows: 100
                  processedRows: 40
                  successfulRows: 38
                  failedRows: 2
                  creditsUsed: 800
                  creditsPerRow: 20
                  createdAt: '2026-08-20T09:15:00.000Z'
                  startedAt: '2026-08-20T09:15:02.000Z'
                  completedAt: null
                  cancelledAt: null
        '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.

````