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

# Creator Filter Options

> Every value the Creator/Video List filters can be set to for this workspace: the ACTIVE/PAUSED analyses (projects) themselves, plus the distinct brands, categories, countries, engines, and personas set up across them, and the min/max FINISHED collect date across them (null if none exist yet -- the date-range picker doesn't depend on this). Not filterable itself and always reflects the whole workspace. Registered ahead of the Creator Card route so 'filters' is never swallowed as a creator_id path param.



## OpenAPI

````yaml https://openapi.shareofmodel.ai/swagger-sos.json get /v1/organizations/{organization_id}/workspaces/{workspace_id}/search/creators/filters
openapi: 3.0.3
info:
  title: Share Of Model API
  version: v1
  description: >-
    ## Search



    The Share of Search API provides visibility, presence, and ranking metrics
    for tracked

    search and AI engine sources. Use it to analyse how a project performs
    across keywords,

    thematics, competitors, and ranked URLs over time.


    For the previous version of the API, see the [v1
    documentation](https://api.shareofsearch.jplus.io/docs/v1).
servers:
  - description: Search - Production API
    url: https://api.shareofsearch.jplus.io/
security: []
tags:
  - name: Projects
    description: >-
      Manage analyses (projects) within a workspace. Create new analyses and
      list existing ones.
  - name: Collects
    description: >-
      Access data collection runs and their raw results. List collect runs for
      an analysis, or retrieve the raw data captured during each run: domain
      rankings, brand mentions, keyword insights, and LLM/SERP responses.
  - name: Overview Metrics
    description: >-
      High-level, aggregated metrics that summarise the overall performance of
      an analysis. Use these endpoints to get a quick picture of visibility,
      presence, andranking across all keywords and sources.
  - name: Metrics
    description: >-
      Detailed, per-entity metrics for deep-diving into specific aspects of an
      analysis. Break down performance by domain, brand, keyword, URL, or
      competitor.
  - name: Insights
    description: >-
      Cross-project KPIs aggregated at the workspace level. These endpoints
      consolidate metrics from all active projects within a workspace to provide
      a unified view of visibility, mentions, citations, sentiment, and ranking.
  - name: Shopping
    description: >-
      Shopping-specific metrics for analyses that track product listings in
      shopping engines. Measure product visibility, pricing, merchant coverage,
      and share of shelf across all tracked keywords and sources.
  - name: Ads
    description: >-
      Sponsored-ad performance across tracked prompts and engines, including
      coverage, advertiser diversity, brand presence, and share of ad voice.
  - name: Creators
    description: >-
      YouTube creators cited as sources in AI-engine search results, enriched
      with channel metrics and an Influence Score. Browse creators across every
      project in a workspace, narrowed by country, engine, brand, category,
      analysis, and persona filters.
paths:
  /v1/organizations/{organization_id}/workspaces/{workspace_id}/search/creators/filters:
    get:
      tags:
        - Creators
      summary: Creator Filter Options
      description: >-
        Every value the Creator/Video List filters can be set to for this
        workspace: the ACTIVE/PAUSED analyses (projects) themselves, plus the
        distinct brands, categories, countries, engines, and personas set up
        across them, and the min/max FINISHED collect date across them (null if
        none exist yet -- the date-range picker doesn't depend on this). Not
        filterable itself and always reflects the whole workspace. Registered
        ahead of the Creator Card route so 'filters' is never swallowed as a
        creator_id path param.
      operationId: get_creator_filter_options
      parameters:
        - name: organization_id
          in: path
          required: true
          schema:
            type: string
            title: Organization Id
        - name: workspace_id
          in: path
          required: true
          schema:
            type: string
            title: Workspace Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreatorFilterOptionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CreatorFilterOptionsResponse:
      properties:
        analyses:
          items:
            $ref: '#/components/schemas/CreatorFilterAnalysisResponse'
          type: array
          title: Analyses
          description: Every ACTIVE/PAUSED project (analysis) in the workspace.
        brands:
          items:
            type: string
          type: array
          title: Brands
          description: Distinct brands set up across those analyses.
        categories:
          items:
            type: string
          type: array
          title: Categories
          description: Distinct categories set up across those analyses.
        countries:
          items:
            type: string
          type: array
          title: Countries
          description: Distinct countries set up across those analyses.
        engines:
          items:
            $ref: '#/components/schemas/SourcesEnum'
          type: array
          title: Engines
          description: Distinct sources (engines) set up across those analyses.
        personas:
          items:
            $ref: '#/components/schemas/CreatorFilterPersonaResponse'
          type: array
          title: Personas
          description: Distinct personas set up across those analyses.
        date_range:
          allOf:
            - $ref: '#/components/schemas/CreatorFilterDateRangeResponse'
          nullable: true
          description: >-
            Min/max date across FINISHED collects for those analyses. Null when
            none exist yet. Best-effort — the date-range filter picker does not
            depend on this.
      type: object
      required:
        - analyses
        - brands
        - categories
        - countries
        - engines
        - personas
      title: CreatorFilterOptionsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreatorFilterAnalysisResponse:
      properties:
        id:
          type: string
          title: Id
          description: >-
            Usable as a project_ids filter value on the other creator-insights
            endpoints.
        name:
          type: string
          nullable: true
          title: Name
        status:
          type: string
          title: Status
          description: ACTIVE or PAUSED — DELETED projects are never returned here.
        website:
          type: string
          title: Website
        brand:
          type: string
          title: Brand
        country:
          type: string
          nullable: true
          title: Country
        language:
          type: string
          nullable: true
          title: Language
      type: object
      required:
        - id
        - status
        - website
        - brand
      title: CreatorFilterAnalysisResponse
    SourcesEnum:
      type: string
      enum:
        - Bing
        - BingAIO
        - ChatGPT
        - Perplexity
        - Google
        - GoogleAIO
        - GoogleAIMode
        - Claude
        - Gemini
        - AmazonRufus
        - Grok
        - Copilot
        - Mistral
      title: SourcesEnum
    CreatorFilterPersonaResponse:
      properties:
        id:
          type: string
          title: Id
          description: >-
            Usable as a persona_ids filter value on the other creator-insights
            endpoints.
        label:
          type: string
          title: Label
      type: object
      required:
        - id
        - label
      title: CreatorFilterPersonaResponse
    CreatorFilterDateRangeResponse:
      properties:
        min_date:
          type: string
          format: date-time
          title: Min Date
        max_date:
          type: string
          format: date-time
          title: Max Date
      type: object
      required:
        - min_date
        - max_date
      title: CreatorFilterDateRangeResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````