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

# List entity mentions in a podcast

> Returns episodes where a specific entity appears within a podcast, ordered by most recent. Each result includes the episode, salience score, occurrence count, and speaker roles. Requires entity_id or company_id.



## OpenAPI

````yaml /openapi.json get /v1/podcasts/{id}/mentions
openapi: 3.1.0
info:
  description: Public API for Particle — news intelligence, financial data, and analysis.
  title: Particle API
  version: 0.1.0
servers:
  - url: https://api.particle.pro
security:
  - ApiKeyHeader: []
  - BearerAuth: []
paths:
  /v1/podcasts/{id}/mentions:
    get:
      tags:
        - Podcasts
        - tier:standard
      summary: List entity mentions in a podcast
      description: >-
        Returns episodes where a specific entity appears within a podcast,
        ordered by most recent. Each result includes the episode, salience
        score, occurrence count, and speaker roles. Requires entity_id or
        company_id.
      operationId: list-podcast-mentions
      parameters:
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 25
            description: Results per page
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Opaque pagination cursor from previous response
          explode: false
          in: query
          name: cursor
          schema:
            description: Opaque pagination cursor from previous response
            type: string
        - description: Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID
          in: path
          name: id
          required: true
          schema:
            description: Podcast slug (e.g., 'all-in'), internal ID, or numeric iTunes ID
            type: string
        - description: Entity slug (e.g., 'sam-altman', 'openai') or ID
          explode: false
          in: query
          name: entity_id
          schema:
            description: Entity slug (e.g., 'sam-altman', 'openai') or ID
            type: string
        - description: >-
            Company slug (e.g., 'nvidia'), domain (e.g., 'nvidia.com'), or ID.
            Resolves to the company's linked entity.
          explode: false
          in: query
          name: company_id
          schema:
            description: >-
              Company slug (e.g., 'nvidia'), domain (e.g., 'nvidia.com'), or ID.
              Resolves to the company's linked entity.
            type: string
        - description: Entity role filter. Constrains which episodes match.
          explode: false
          in: query
          name: role
          schema:
            description: Entity role filter. Constrains which episodes match.
            enum:
              - guest
              - host
              - panelist
              - correspondent
              - mention
            type: string
        - description: >-
            Only episodes published after this ISO 8601 date or date-time (e.g.
            2024-01-01 or 2024-01-01T00:00:00Z)
          explode: false
          in: query
          name: published_after
          schema:
            description: >-
              Only episodes published after this ISO 8601 date or date-time
              (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)
            type: string
        - description: >-
            Only episodes published before this ISO 8601 date or date-time (e.g.
            2024-01-01 or 2024-01-01T00:00:00Z)
          explode: false
          in: query
          name: published_before
          schema:
            description: >-
              Only episodes published before this ISO 8601 date or date-time
              (e.g. 2024-01-01 or 2024-01-01T00:00:00Z)
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagePodcastMention'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/PlatformError'
          description: Error
      x-codeSamples:
        - label: cURL
          lang: curl
          source: |-
            curl -H "X-API-Key: $PARTICLE_API_KEY" \
              "https://api.particle.pro/v1/podcasts/{id}/mentions?limit=25"
components:
  schemas:
    PagePodcastMention:
      additionalProperties: false
      properties:
        cursor:
          description: Pass to next request for more results
          type: string
        data:
          description: List of results
          items:
            $ref: '#/components/schemas/PodcastMention'
          type:
            - array
            - 'null'
        has_more:
          description: Whether more results exist
          type: boolean
      required:
        - data
        - has_more
      type: object
    PlatformError:
      additionalProperties: false
      properties:
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        error_code:
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        resolve:
          $ref: '#/components/schemas/ErrorResolve'
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    PodcastMention:
      additionalProperties: false
      properties:
        episode:
          $ref: '#/components/schemas/EpisodeCompact'
          description: The episode where the entity appears
        occurrences:
          description: Number of times the entity is mentioned in this episode
          format: int64
          type: integer
        salience:
          description: >-
            Importance score for this entity within the episode. When salience
            metadata is available, this is a percentile rank in (0.0, 1.0) —
            0.95 means more salient than 95% of other entities mentioned, and
            the top entity approaches but never reaches 1.0. A value of 0.0
            indicates salience metadata was unavailable for this episode/entity
            (e.g. a speaker-only appearance with no mention row).
          format: double
          type: number
        speaker_roles:
          description: Roles the entity holds as a speaker (e.g. HOST, GUEST)
          items:
            type: string
          type:
            - array
            - 'null'
      required:
        - episode
        - salience
        - occurrences
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    ErrorResolve:
      additionalProperties: false
      properties:
        action:
          type: string
        endpoint:
          type: string
        message:
          type: string
        method:
          type: string
        url:
          type: string
      required:
        - message
      type: object
    EpisodeCompact:
      additionalProperties: false
      properties:
        clip_count:
          description: Number of clips
          format: int64
          type: integer
        duration_seconds:
          description: Duration in seconds
          format: double
          type: number
        has_transcript:
          description: Whether a transcript is available
          type: boolean
        id:
          description: Episode ID
          type: string
        published_at:
          description: Publication date
          format: date-time
          type: string
        segment_count:
          description: Number of segments
          format: int64
          type: integer
        slug:
          description: Human-readable slug identifier
          type: string
        title:
          description: Episode title
          type: string
      required:
        - id
        - title
        - duration_seconds
        - has_transcript
      type: object
  securitySchemes:
    ApiKeyHeader:
      description: Pass your API key in the X-API-Key header (recommended).
      in: header
      name: X-API-Key
      type: apiKey
    BearerAuth:
      description: Pass your API key as a Bearer token in the Authorization header.
      scheme: bearer
      type: http

````