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

# Get a guest's brand-suitability exposure profile

> Returns the distribution of IAB Tech Lab brand-suitability tiers across the podcasts a guest has appeared on, plus the most-frequently flagged categories observed in those shows. This measures the guest's exposure across the shows they've appeared on — not a verdict on the guest themselves.



## OpenAPI

````yaml /openapi.json get /v1/podcasts/guests/{id}/suitability
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/guests/{id}/suitability:
    get:
      tags:
        - Podcast Guests
        - tier:standard
      summary: Get a guest's brand-suitability exposure profile
      description: >-
        Returns the distribution of IAB Tech Lab brand-suitability tiers across
        the podcasts a guest has appeared on, plus the most-frequently flagged
        categories observed in those shows. This measures the guest's exposure
        across the shows they've appeared on — not a verdict on the guest
        themselves.
      operationId: get-podcast-guest-suitability-exposure
      parameters:
        - description: >-
            Person identifier — person slug (recommended), knowledge-graph
            entity slug, or encoded UUID
          in: path
          name: id
          required: true
          schema:
            description: >-
              Person identifier — person slug (recommended), knowledge-graph
              entity slug, or encoded UUID
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PodcastGuestSuitabilityExposure'
          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/guests/{id}/suitability"
components:
  schemas:
    PodcastGuestSuitabilityExposure:
      additionalProperties: false
      properties:
        lifetime:
          $ref: '#/components/schemas/PodcastGuestSuitabilityWindow'
          description: Tier distribution across every podcast the guest has appeared on
        notes:
          description: 'Plain-text framing: this surface measures exposure, not guest risk.'
          type: string
        recent_90d:
          $ref: '#/components/schemas/PodcastGuestSuitabilityWindow'
          description: >-
            Tier distribution across podcasts where the guest appeared in the
            trailing 90 days
        top_categories:
          description: >-
            Most-frequently flagged IAB Tech Lab brand-suitability categories
            across the guest's podcasts (NONE-prevalence buckets omitted)
          items:
            $ref: '#/components/schemas/PodcastGuestSuitabilityCategoryStat'
          type:
            - array
            - 'null'
      required:
        - lifetime
        - recent_90d
        - notes
      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
    PodcastGuestSuitabilityWindow:
      additionalProperties: false
      properties:
        tier_distribution:
          description: Episode + distinct-podcast counts bucketed by tier
          items:
            $ref: '#/components/schemas/PodcastGuestSuitabilityTierBucket'
          type:
            - array
            - 'null'
        window_start:
          description: Inclusive lower bound of the window (omitted for the lifetime slice)
          format: date-time
          type: string
      required:
        - tier_distribution
      type: object
    PodcastGuestSuitabilityCategoryStat:
      additionalProperties: false
      properties:
        code:
          description: >-
            IAB Tech Lab brand-suitability category code (e.g. adult_sexual,
            hate_speech_aggression)
          type: string
        podcasts:
          description: >-
            Distinct podcasts the guest has appeared on whose latest suitability
            analysis flagged this (code, prevalence) bucket
          format: int64
          type: integer
        prevalence:
          description: INCIDENTAL, OCCASIONAL, FREQUENT, or PERVASIVE
          type: string
        treatment:
          description: >-
            Most-prevalent treatment observed at this prevalence level:
            EDITORIAL, DOCUMENTARY, PROMOTIONAL, or GLAMORIZING
          type: string
      required:
        - code
        - prevalence
        - podcasts
      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
    PodcastGuestSuitabilityTierBucket:
      additionalProperties: false
      properties:
        distinct_podcasts:
          description: Distinct podcasts in this tier
          format: int64
          type: integer
        episodes:
          description: Episodes in this tier
          format: int64
          type: integer
        tier:
          description: SAFE, LIMITED, SENSITIVE, UNSAFE, or UNKNOWN (not yet evaluated)
          type: string
      required:
        - tier
        - episodes
        - distinct_podcasts
      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

````