> ## 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 Breakout Entity Tags

> List the tags available to filter the breakout entity list by.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/entities/breakout/tags
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/entities/breakout/tags:
    get:
      tags:
        - Breakout Topics
      summary: List Breakout Entity Tags
      description: List the tags available to filter the breakout entity list by.
      operationId: list_breakout_entity_tags
      parameters:
        - name: entity_type
          in: query
          required: true
          schema:
            type: string
            title: Entity Type
            description: 'Entity kind: ''player'' or ''team'''
          description: 'Entity kind: ''player'' or ''team'''
        - name: relation
          in: query
          required: false
          schema:
            type: string
            description: Tag kind to list, e.g. 'sport', 'team', 'league', 'country'
            default: sport
            title: Relation
          description: Tag kind to list, e.g. 'sport', 'team', 'league', 'country'
        - name: vertical
          in: query
          required: false
          schema:
            type: string
            description: Vertical; only 'sports'
            default: sports
            title: Vertical
          description: Vertical; only 'sports'
        - name: locale
          in: query
          required: false
          schema:
            type: string
            description: Locale for display names, e.g. 'en-US' or 'en-GB'
            default: en-US
            title: Locale
          description: Locale for display names, e.g. 'en-US' or 'en-GB'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityFacetsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    EntityFacetsResponse:
      properties:
        facets:
          items:
            $ref: '#/components/schemas/EntityFacet'
          type: array
          title: Facets
          description: >-
            Tags present among the currently-breaking entities, most common
            first
      type: object
      title: EntityFacetsResponse
      description: Available tags to filter the breakout entity list by.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EntityFacet:
      properties:
        relation:
          type: string
          title: Relation
          description: The kind of association, e.g. 'sport', 'team', 'league'
        tag:
          type: string
          title: Tag
          description: >-
            Tag identifier; pass as the 'tag' query parameter on the list
            endpoint
        label:
          type: string
          title: Label
          description: Canonical, region-neutral tag name, e.g. 'association football'
        display_name:
          type: string
          title: Display Name
          description: >-
            Name to show in the UI, adapted to the requested locale (e.g.
            'soccer' for en-US, 'football' for en-GB). Use 'tag' as the filter
            value, not this.
        entity_count:
          type: integer
          title: Entity Count
          description: How many currently-breaking entities carry this tag
      type: object
      required:
        - relation
        - tag
        - label
        - display_name
        - entity_count
      title: EntityFacet
      description: One value you can filter the breakout list by (e.g. a sport).
    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

````