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

# List Private Breakout Feeds



## OpenAPI

````yaml /api-reference/openapi.json get /v1/breakout/feeds
openapi: 3.1.0
info:
  title: Upriver API
  description: >-
    A social insights API for ad generation platforms. It provides structured
    signals, like psychographics, behavioral insights, trends, and audience
    language, to help AI models generate relevant, higher-converting ads.
  version: 1.0.0
servers:
  - url: https://api.upriver.ai
    description: Production API server
security: []
tags:
  - name: Brands
  - name: Products
  - name: Creators
  - name: Audience
  - name: Sponsorships
  - name: Trends
  - name: Breakout Topics
  - name: Taxonomy
paths:
  /v1/breakout/feeds:
    get:
      tags:
        - Breakout Feeds
      summary: List Private Breakout Feeds
      operationId: list_private_breakout_feeds
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateFeedCatalogResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    PrivateFeedCatalogResponse:
      properties:
        feeds:
          items:
            $ref: '#/components/schemas/PrivateFeedSummary'
          type: array
          title: Feeds
          description: Private feeds enabled for the authenticated account.
      type: object
      required:
        - feeds
      title: PrivateFeedCatalogResponse
    PrivateFeedSummary:
      properties:
        slug:
          type: string
          title: Slug
          description: Stable private-feed identifier.
        label:
          type: string
          title: Label
          description: Human-readable private-feed label.
        facets:
          items:
            $ref: '#/components/schemas/PrivateFeedFacet'
          type: array
          title: Facets
          description: Available feed facets.
      type: object
      required:
        - slug
        - label
        - facets
      title: PrivateFeedSummary
    PrivateFeedFacet:
      properties:
        slug:
          type: string
          title: Slug
          description: Stable feed facet identifier.
        label:
          type: string
          title: Label
          description: Human-readable facet label.
      type: object
      required:
        - slug
        - label
      title: PrivateFeedFacet
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````