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

> List narrative arcs, ordered by most recently updated.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/topics/breakout/narratives
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/topics/breakout/narratives:
    get:
      tags:
        - Breakout Topics
      summary: List Narratives
      description: List narrative arcs, ordered by most recently updated.
      operationId: list_narratives
      parameters:
        - name: vertical
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by vertical
            title: Vertical
          description: Filter by vertical
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListNarrativesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ListNarrativesResponse:
      properties:
        narratives:
          items:
            $ref: '#/components/schemas/NarrativeResponse'
          type: array
          title: Narratives
          description: Narratives ordered by updated_at DESC
      type: object
      required:
        - narratives
      title: ListNarrativesResponse
      description: List of narratives.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NarrativeResponse:
      properties:
        narrative_id:
          type: string
          title: Narrative Id
          description: UUID identifier
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
          description: URL-friendly slug (non-identity)
        display_name:
          type: string
          title: Display Name
          description: Human-readable name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Longer description of the developing story
        vertical:
          type: string
          title: Vertical
          description: Vertical slug
        member_count:
          type: integer
          title: Member Count
          description: Number of linked topics
        total_citations:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Citations
          description: Total citations across all member topics
        combined_source_summary:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Combined Source Summary
          description: Aggregate source counts across members
        date_range:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Date Range
          description: Earliest and latest discovered_at across members
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - narrative_id
        - display_name
        - vertical
        - member_count
        - created_at
        - updated_at
      title: NarrativeResponse
      description: A lightweight narrative arc linking related breakout topics.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````