Profound Prompts API

The Prompts API from Profound — 3 operation(s) for prompts.

Operations 3

POST /v1/prompts/answers Get Answers #
POST /v2/prompts/answers Query Answers V2 #
POST /v2/prompts/answers/stream Stream Answers V2 #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/profound-prompts-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

profound-prompts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: External Prompts API
  version: 6551bd49db665ffb7f80780b3e150b8e8b780cc3
servers:
- url: https://api.tryprofound.com
  description: Production Server
tags:
- name: Prompts
paths:
  /v1/prompts/answers:
    post:
      tags:
      - Prompts
      summary: Get Answers
      operationId: get_answers_v1_prompts_answers_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnswersQuery'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnswersResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - BearerAuth: []
  /v2/prompts/answers:
    post:
      tags:
      - Prompts
      summary: Query Answers V2
      operationId: query_answers_v2_v2_prompts_answers_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnswersV2Query'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnswersV2Response'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - BearerAuth: []
  /v2/prompts/answers/stream:
    post:
      tags:
      - Prompts
      summary: Stream Answers V2
      operationId: stream_answers_v2_v2_prompts_answers_stream_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnswersV2Query'
        required: true
      responses:
        '200':
          description: Server-sent events stream. Emits one `summary` event (the report `info` block) first, then one `result` event per row.
          content:
            text/event-stream:
              schema:
                oneOf:
                - $ref: '#/components/schemas/AnswersV2Info'
                  description: '`summary` event payload (the report `info` block).'
                - $ref: '#/components/schemas/AnswerRow'
                  description: '`result` event payload — one answer row.'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - APIKeyHeader: []
      - BearerAuth: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AnswerRow:
      properties:
        run_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Run Id
        date:
          anyOf:
          - type: string
          - type: 'null'
          title: Date
        model:
          anyOf:
          - $ref: '#/components/schemas/DimensionRef'
          - type: 'null'
        topic:
          anyOf:
          - type: string
          - type: 'null'
          title: Topic
        topic_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Topic Id
        region:
          anyOf:
          - type: string
          - type: 'null'
          title: Region
        persona:
          anyOf:
          - type: string
          - type: 'null'
          title: Persona
        tags:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Tags
        prompt:
          anyOf:
          - type: string
          - type: 'null'
          title: Prompt
        prompt_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Prompt Id
        response:
          anyOf:
          - type: string
          - type: 'null'
          title: Response
        mentions:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Mentions
        citations:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Citations
        citation_details:
          anyOf:
          - items:
              $ref: '#/components/schemas/ExecutionCitationDetail'
            type: array
          - type: 'null'
          title: Citation Details
          description: Citation metadata. `positions` identify citation locations in the answer text. Each `groups` entry represents a rendered citation pill; `group_position` is the source's position within that pill.
        search_queries:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Search Queries
        analysis_types:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Analysis Types
        sentiment_claims:
          anyOf:
          - items:
              additionalProperties: true
              type: object
            type: array
          - type: 'null'
          title: Sentiment Claims
      additionalProperties: true
      type: object
      title: AnswerRow
      description: One answer row. Present fields depend on `include`; `model` is an `{id, name}` reference.
    AnswersResponse:
      properties:
        info:
          $ref: '#/components/schemas/AnswersResponseInfo'
        data:
          items:
            $ref: '#/components/schemas/AnswersRawData'
          type: array
          title: Data
      type: object
      required:
      - info
      - data
      title: AnswersResponse
      description: Response for the answers endpoint.
    TopicIdFilter:
      properties:
        field:
          anyOf:
          - type: string
            const: topic_id
          - type: string
            const: topic
            deprecated: true
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: TopicIdFilter
      description: Filter by topic UUID.
    AnswersQuery:
      properties:
        category_id:
          type: string
          format: uuid
          title: Category Id
        start_date:
          type: string
          format: date-time
          title: Start Date
        end_date:
          type: string
          format: date-time
          title: End Date
        pagination:
          $ref: '#/components/schemas/Pagination'
          description: Pagination parameters for the results. Default is 10,000 rows with no offset.
        filters:
          items:
            oneOf:
            - $ref: '#/components/schemas/RegionIdFilter'
            - $ref: '#/components/schemas/RegionNameFilter'
            - $ref: '#/components/schemas/ModelIdFilter'
            - $ref: '#/components/schemas/TagIdFilter'
            - $ref: '#/components/schemas/AnalysisTypeFilter'
            - $ref: '#/components/schemas/PromptTypeFilter'
            - $ref: '#/components/schemas/PromptFilter'
            - $ref: '#/components/schemas/PromptIdFilter'
            - $ref: '#/components/schemas/PersonaIdFilter'
            - $ref: '#/components/schemas/TopicIdFilter'
            - $ref: '#/components/schemas/AssetIdFilter'
            - $ref: '#/components/schemas/profound_answer_engine_insights__filters__AssetNameFilter'
            discriminator:
              propertyName: field
              mapping:
                analysis_type: '#/components/schemas/AnalysisTypeFilter'
                asset_id: '#/components/schemas/AssetIdFilter'
                asset_name: '#/components/schemas/profound_answer_engine_insights__filters__AssetNameFilter'
                model: '#/components/schemas/ModelIdFilter'
                model_id: '#/components/schemas/ModelIdFilter'
                persona_id: '#/components/schemas/PersonaIdFilter'
                prompt: '#/components/schemas/PromptFilter'
                prompt_id: '#/components/schemas/PromptIdFilter'
                prompt_type: '#/components/schemas/PromptTypeFilter'
                region: '#/components/schemas/RegionIdFilter'
                region_id: '#/components/schemas/RegionIdFilter'
                region_name: '#/components/schemas/RegionNameFilter'
                tag: '#/components/schemas/TagIdFilter'
                tag_id: '#/components/schemas/TagIdFilter'
                topic: '#/components/schemas/TopicIdFilter'
                topic_id: '#/components/schemas/TopicIdFilter'
          type: array
          title: Filters
          description: List of filters to apply to the answers report.
        include:
          $ref: '#/components/schemas/EnabledFieldsResponse'
      type: object
      required:
      - category_id
      - start_date
      - end_date
      title: AnswersQuery
      description: Body for the answers endpoint.
    FilterNode:
      properties:
        and:
          anyOf:
          - items:
              $ref: '#/components/schemas/FilterNode'
            type: array
          - type: 'null'
          title: And
        or:
          anyOf:
          - items:
              $ref: '#/components/schemas/FilterNode'
            type: array
          - type: 'null'
          title: Or
        not:
          anyOf:
          - $ref: '#/components/schemas/FilterNode'
          - type: 'null'
        field:
          anyOf:
          - type: string
          - type: 'null'
          title: Field
        op:
          anyOf:
          - type: string
          - type: 'null'
          title: Op
        value:
          title: Value
      additionalProperties: false
      type: object
      title: FilterNode
      description: A leaf (`field`/`op`/`value`) or an `and`/`or`/`not` group.
    SentimentTheme:
      properties:
        type:
          anyOf:
          - type: string
            const: positive
          - type: string
            const: negative
          title: Type
        name:
          type: string
          title: Name
      type: object
      required:
      - type
      - name
      title: SentimentTheme
    DimensionRef:
      properties:
        id:
          anyOf:
          - type: string
          - type: 'null'
          title: Id
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
      type: object
      title: DimensionRef
      description: An ``{id, name}`` reference for a grouped dimension value.
    ExecutionCitationDetail:
      properties:
        url:
          type: string
          title: Url
        clean_url:
          type: string
          title: Clean Url
        title:
          type: string
          title: Title
        text:
          anyOf:
          - type: string
          - type: 'null'
          title: Text
        hostname:
          type: string
          title: Hostname
        path:
          type: string
          title: Path
        positions:
          items:
            type: integer
          type: array
          title: Positions
        groups:
          anyOf:
          - items:
              $ref: '#/components/schemas/CitationDetailGroup'
            type: array
          - type: 'null'
          title: Groups
        first_cited_at:
          anyOf:
          - type: string
          - type: 'null'
          title: First Cited At
        citation_category:
          anyOf:
          - type: string
          - type: 'null'
          title: Citation Category
      type: object
      required:
      - url
      - clean_url
      - title
      - hostname
      - path
      title: ExecutionCitationDetail
    CitationDetail:
      properties:
        url:
          type: string
          title: Url
        clean_url:
          type: string
          title: Clean Url
        title:
          type: string
          title: Title
        text:
          anyOf:
          - type: string
          - type: 'null'
          title: Text
        hostname:
          type: string
          title: Hostname
        path:
          type: string
          title: Path
        first_cited_at:
          anyOf:
          - type: string
          - type: 'null'
          title: First Cited At
        positions:
          items:
            type: integer
          type: array
          title: Positions
        groups:
          anyOf:
          - items:
              $ref: '#/components/schemas/CitationDetailGroup'
            type: array
          - type: 'null'
          title: Groups
        citation_category:
          anyOf:
          - type: string
          - type: 'null'
          title: Citation Category
      type: object
      required:
      - url
      - clean_url
      - title
      - hostname
      - path
      title: CitationDetail
    PersonaIdFilter:
      properties:
        field:
          type: string
          const: persona_id
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: PersonaIdFilter
      description: Filter by persona UUID.
    CitationDetailGroup:
      properties:
        group_id:
          type: integer
          title: Group Id
        group_position:
          type: integer
          title: Group Position
      type: object
      required:
      - group_id
      - group_position
      title: CitationDetailGroup
    PromptTypeFilter:
      properties:
        field:
          type: string
          const: prompt_type
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          - contains
          - not_contains
          - matches
          - contains_case_insensitive
          - not_contains_case_insensitive
          title: Operator
        value:
          anyOf:
          - type: string
            enum:
            - visibility
            - sentiment
          - items:
              type: string
              enum:
              - visibility
              - sentiment
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: PromptTypeFilter
      description: "Filter by prompt type (visibility or sentiment).\n\n.. deprecated::\n    Use :class:`AnalysisTypeFilter` instead. ``prompt_type`` is normalised\n    to ``analysis_type`` at parse time."
    AnswersResponseInfo:
      properties:
        total_rows:
          type: integer
          title: Total Rows
      type: object
      required:
      - total_rows
      title: AnswersResponseInfo
    TagIdFilter:
      properties:
        field:
          anyOf:
          - type: string
            const: tag_id
          - type: string
            const: tag
            deprecated: true
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: TagIdFilter
      description: Filter by tag (prompt group) UUID.
    RegionNameFilter:
      properties:
        field:
          type: string
          const: region_name
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          - contains
          - not_contains
          - matches
          - contains_case_insensitive
          - not_contains_case_insensitive
          title: Operator
        value:
          anyOf:
          - type: string
          - items:
              type: string
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: RegionNameFilter
      description: Filter by region name.
    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
    AnswersRawData:
      properties:
        run_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Run Id
        created_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Created At
        prompt:
          anyOf:
          - type: string
          - type: 'null'
          title: Prompt
        prompt_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Prompt Id
        mentions:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Mentions
        analysis_types:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Analysis Types
        prompt_type:
          anyOf:
          - type: string
          - type: 'null'
          title: Prompt Type
        response:
          anyOf:
          - type: string
          - type: 'null'
          title: Response
        citations:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Citations
        citation_details:
          anyOf:
          - items:
              $ref: '#/components/schemas/CitationDetail'
            type: array
          - type: 'null'
          title: Citation Details
        web_search_results:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Web Search Results
        search_triggered:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Search Triggered
        themes:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Themes
        sentiment_themes:
          anyOf:
          - items:
              $ref: '#/components/schemas/SentimentTheme'
            type: array
          - type: 'null'
          title: Sentiment Themes
          description: Uses legacy sentiment data.
        search_queries:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Search Queries
        topic:
          anyOf:
          - type: string
          - type: 'null'
          title: Topic
        topic_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Topic Id
        region:
          anyOf:
          - type: string
          - type: 'null'
          title: Region
        model:
          anyOf:
          - type: string
          - type: 'null'
          title: Model
        model_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Model Id
        asset:
          anyOf:
          - type: string
          - type: 'null'
          title: Asset
        asset_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Asset Id
        tags:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Tags
        persona:
          anyOf:
          - type: string
          - type: 'null'
          title: Persona
      type: object
      title: AnswersRawData
      description: Raw data for the answers endpoint.
    PromptIdFilter:
      properties:
        field:
          type: string
          const: prompt_id
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: PromptIdFilter
      description: Filter by prompt UUID.
    AnalysisTypeFilter:
      properties:
        field:
          type: string
          const: analysis_type
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          - contains
          - not_contains
          - matches
          - contains_case_insensitive
          - not_contains_case_insensitive
          title: Operator
        value:
          anyOf:
          - type: string
            enum:
            - visibility
            - sentiment
            - sentiment_v2
            - accuracy
          - items:
              type: string
              enum:
              - visibility
              - sentiment
              - sentiment_v2
              - accuracy
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: AnalysisTypeFilter
      description: Filter by analysis type (visibility, sentiment, or accuracy).
    AnswersV2Info:
      properties:
        total_results:
          anyOf:
          - type: integer
          - type: 'null'
          title: Total Results
          description: Total rows matching the query before pagination (null when not computed).
        count:
          type: integer
          title: Count
          description: Number of rows returned in `data` for this page.
        next_cursor:
          anyOf:
          - type: string
          - type: 'null'
          title: Next Cursor
          description: Opaque cursor for the next page; null on the last page.
        models:
          items:
            type: string
          type: array
          title: Models
          description: Display names of the models the report covers.
        start_date:
          type: string
          title: Start Date
          description: Echoed request start date (YYYY-MM-DD, ET).
        end_date:
          type: string
          title: End Date
          description: Echoed request end date (YYYY-MM-DD, ET).
        filter:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Filter
          description: Echoed normalized filter tree, or null when no filter was sent.
        include:
          items:
            type: string
          type: array
          title: Include
          description: Row fields returned (echoes `include`, or all fields when omitted).
      additionalProperties: true
      type: object
      required:
      - count
      - models
      - start_date
      - end_date
      - include
      title: AnswersV2Info
    Pagination:
      properties:
        limit:
          type: integer
          maximum: 50000.0
          exclusiveMinimum: 0.0
          title: Limit
          description: Maximum number of results to return. Default is 10,000, maximum is 50,000.
          default: 10000
        offset:
          type: integer
          minimum: 0.0
          title: Offset
          description: Offset for the results. Used for pagination.
          default: 0
      type: object
      title: Pagination
      description: Offset-based pagination parameters.
    EnabledFieldsResponse:
      properties:
        run_id:
          type: boolean
          title: Run Id
          default: false
        created_at:
          type: boolean
          title: Created At
          default: true
        prompt:
          type: boolean
          title: Prompt
          default: true
        prompt_id:
          type: boolean
          title: Prompt Id
          default: false
        mentions:
          type: boolean
          title: Mentions
          default: true
        analysis_types:
          type: boolean
          title: Analysis Types
          default: false
        prompt_type:
          type: boolean
          title: Prompt Type
          default: true
          deprecated: true
        response:
          type: boolean
          title: Response
          default: true
        citations:
          type: boolean
          title: Citations
          default: true
        citation_details:
          type: boolean
          title: Citation Details
          default: false
        web_search_results:
          type: boolean
          title: Web Search Results
          default: false
        search_triggered:
          type: boolean
          title: Search Triggered
          default: false
        themes:
          type: boolean
          title: Themes
          description: Use 'sentiment_themes' instead
          default: true
          deprecated: true
        sentiment_themes:
          type: boolean
          title: Sentiment Themes
          description: Uses legacy sentiment data.
          default: false
        topic:
          type: boolean
          title: Topic
          default: true
        topic_id:
          type: boolean
          title: Topic Id
          default: false
        region:
          type: boolean
          title: Region
          default: true
        model:
          type: boolean
          title: Model
          default: true
        model_id:
          type: boolean
          title: Model Id
          default: true
        asset:
          type: boolean
          title: Asset
          default: true
        asset_id:
          type: boolean
          title: Asset Id
          default: false
        tags:
          type: boolean
          title: Tags
          default: false
        search_queries:
          type: boolean
          title: Search Queries
          default: false
        persona:
          type: boolean
          title: Persona
          default: false
      type: object
      title: EnabledFieldsResponse
    PromptFilter:
      properties:
        field:
          type: string
          const: prompt
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          - contains
          - not_contains
          - matches
          - contains_case_insensitive
          - not_contains_case_insensitive
          title: Operator
        value:
          anyOf:
          - type: string
          - items:
              type: string
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: PromptFilter
      description: Filter by prompt text
    ModelIdFilter:
      properties:
        field:
          anyOf:
          - type: string
            const: model_id
          - type: string
            const: model
            deprecated: true
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: ModelIdFilter
      description: Filter by AI model/platform UUID.
    RegionIdFilter:
      properties:
        field:
          anyOf:
          - type: string
            const: region_id
          - type: string
            const: region
            deprecated: true
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: RegionIdFilter
      description: Filter by region UUID.
    AnswersV2Response:
      properties:
        info:
          $ref: '#/components/schemas/AnswersV2Info'
        data:
          items:
            $ref: '#/components/schemas/AnswerRow'
          type: array
          title: Data
      type: object
      required:
      - info
      - data
      title: AnswersV2Response
    AssetIdFilter:
      properties:
        field:
          type: string
          const: asset_id
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          title: Operator
        value:
          anyOf:
          - type: string
            format: uuid
          - items:
              type: string
              format: uuid
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: AssetIdFilter
    profound_answer_engine_insights__filters__AssetNameFilter:
      properties:
        field:
          type: string
          const: asset_name
          title: Field
        operator:
          type: string
          enum:
          - is
          - not_is
          - in
          - not_in
          - contains
          - not_contains
          - matches
          - contains_case_insensitive
          - not_contains_case_insensitive
          title: Operator
        value:
          anyOf:
          - type: string
          - items:
              type: string
            type: array
          title: Value
      type: object
      required:
      - field
      - operator
      - value
      title: AssetNameFilter
      description: Filter by asset name
    AnswersV2Query:
      properties:
        category_id:
          type: string
          format: uuid
          title: Category Id
        start_date:
          type: string
          title: Start Date
          description: YYYY-MM-DD, ET, inclusive
        end_date:
          type: string
          title: End Date
          description: YYYY-MM-DD, ET, inclusive
        include:
          anyOf:
          - items:
              type: string
              enum:
              - run_id
              - date
              - model
              - topic
              - topic_id
              - persona
              - region
              - tags
              - prompt
              - prompt_id
              - response
              - mentions
              - citations
              - citation_details
              - search_queries
              - analysis_types
              - sentiment_claims
            type: array
          - type: 'null'
          title: Include
          description: 'Which row fields to return: `run_id`, `date`, `model`, `topic`, `topic_id`, `region`, `persona`, `tags`, `prompt`, `prompt_id`, `response`, `mentions`, `cit

# --- truncated at 32 KB (33 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/profound/refs/heads/main/openapi/profound-prompts-api-openapi.yml