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

# Poll one exact Feed Run and page its immutable terminal evidence.

> Poll one exact Feed Run and page its immutable terminal evidence.

## Overview

Poll one exact Feed Run and page its immutable terminal evidence.

This page documents `get /api/feed/runs/{runId}`. Use the request and response sections on this page for accepted parameters, payload fields, response fields, and authentication behavior.

## AI agent notes

* Confirm the operation matches the user's intent before calling it.
* For write operations, confirm the user intends to change state.
* Surface validation, permission, and not-found errors instead of retrying unchanged.


## OpenAPI

````yaml get /api/feed/runs/{runId}
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - Feed and Lead Finder search
    preparation, campaign-backed Outbound execution, Puffle Agent runs, sender
    management, and Unibox reply workflows. Designed for operation by both
    humans and autonomous AI agents. Agents should start at the [Agent
    Playbook](/guides/agent-playbook) which prescribes a workspace-context check
    (`GET /api/context`) and core user journeys with exact call ordering.
  contact:
    name: Puffle Support
    url: https://puffle.ai
servers:
  - url: https://app.puffle.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Campaign-backed Outbound execution. These endpoints manage draft,
      launching, active, paused, and completed Outbound runs with sequence
      nodes, contacts, and sender accounts.
  - name: Accounts
    description: Signed-in user account, settings, and workspace context endpoints.
  - name: Billing
    description: Billing customer portal and account billing endpoints.
  - name: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Read connected LinkedIn and X accounts, review current and archived posts,
      and reconcile publication status. Creating, editing, scheduling,
      publishing, OAuth connection, analytics, and mentions remain
      dashboard-managed workflows and are not part of the public Bearer-token
      API.
paths:
  /api/feed/runs/{runId}:
    get:
      tags:
        - Feed
      summary: Poll one exact Feed Run and page its immutable terminal evidence.
      description: Poll one exact Feed Run and page its immutable terminal evidence.
      operationId: feed.getRun
      parameters:
        - name: runId
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            exclusiveMinimum: true
            maximum: 100
            minimum: 0
        - name: cursor
          in: query
          required: false
          schema:
            type: string
            maxLength: 512
      responses:
        '200':
          description: Exact Feed Run.
          content:
            application/json:
              schema:
                type: object
                properties:
                  run:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      status:
                        type: string
                        enum:
                          - queued
                          - running
                          - completed
                          - partial
                          - failed
                          - cancelled
                      counts:
                        type: object
                        additionalProperties:
                          type: number
                      errors:
                        type: array
                        items:
                          type: object
                          properties:
                            sourceId:
                              type: string
                            error:
                              type: string
                            code:
                              type: string
                          required:
                            - sourceId
                            - error
                          additionalProperties: false
                      sourceStatus:
                        type: array
                        items:
                          type: object
                          properties:
                            sourceId:
                              type: string
                            status:
                              type: string
                            error:
                              type: string
                          required:
                            - sourceId
                            - status
                          additionalProperties: false
                      cancelledAt:
                        type: string
                        nullable: true
                      createdAt:
                        type: string
                      updatedAt:
                        type: string
                    required:
                      - id
                      - status
                      - counts
                      - errors
                      - sourceStatus
                      - cancelledAt
                      - createdAt
                      - updatedAt
                    additionalProperties: false
                  resultsReady:
                    type: boolean
                  historyAvailable:
                    type: boolean
                  occurrences:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        resultId:
                          type: string
                          format: uuid
                        sourceId:
                          type: string
                        sourceUrl:
                          type: string
                        title:
                          type: string
                        content:
                          type: string
                        strategyReason:
                          type: string
                        signalReason:
                          type: string
                          nullable: true
                        occurredAt:
                          type: string
                          nullable: true
                        score:
                          type: integer
                          minimum: -9007199254740991
                          maximum: 9007199254740991
                        evidence:
                          type: object
                          properties:
                            author:
                              type: object
                              properties:
                                name:
                                  type: string
                                handle:
                                  type: string
                                url:
                                  type: string
                                  format: uri
                              additionalProperties: false
                            entityCompany:
                              type: string
                            entityPerson:
                              type: string
                          additionalProperties: false
                        resultCreatedAt:
                          type: string
                        capturedAt:
                          type: string
                      required:
                        - id
                        - resultId
                        - sourceId
                        - sourceUrl
                        - title
                        - content
                        - strategyReason
                        - signalReason
                        - occurredAt
                        - score
                        - evidence
                        - resultCreatedAt
                        - capturedAt
                      additionalProperties: false
                  nextCursor:
                    type: string
                    nullable: true
                required:
                  - run
                  - resultsReady
                  - historyAvailable
                  - occurrences
                  - nextCursor
                additionalProperties: false
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '404':
          description: Not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                  sourceId:
                    type: string
                  code:
                    type: string
                  retryable:
                    type: boolean
                  alert:
                    type: boolean
                  action:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - navigate
                      label:
                        type: string
                      href:
                        type: string
                    required:
                      - type
                      - label
                      - href
                    additionalProperties: false
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````