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

# Query the cross-bank financial crimes watch list for a consumer or business



## OpenAPI

````yaml POST /v1/products/cross_bank_financial_crimes_watch_list/query
openapi: 3.1.0
info:
  title: SOLO Network API
  version: v1
servers:
  - url: https://api.solo.one
    description: Production
  - url: https://api.sandbox.solo.one
    description: Sandbox
security: []
paths:
  /v1/products/cross_bank_financial_crimes_watch_list/query:
    post:
      tags:
        - Cross-Bank Financial Crimes Watch List
      summary: >-
        Query the cross-bank financial crimes watch list for a consumer or
        business
      operationId: >-
        cross_bank_financial_crimes_watch_list_query_v1_products_cross_bank_financial_crimes_watch_list_query_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CrossBankFinancialCrimesWatchListQueryInput'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CrossBankFinancialCrimesWatchListQueryOutput
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CrossBankFinancialCrimesWatchListQueryInput:
      properties:
        policy_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Policy Id
          description: >-
            Querying policy applied across every network in network_ids. If
            omitted, each network's default policy is used.
        network_ids:
          items:
            type: string
            format: uuid
          type: array
          minItems: 1
          title: Network Ids
          description: >-
            Networks to query across; the single policy is applied to all of
            them.
        furnishing_entity_ids:
          anyOf:
            - items:
                type: string
                format: uuid
              type: array
            - type: 'null'
          title: Furnishing Entity Ids
          description: >-
            Optional furnishing-entity scope. When omitted or empty, data from
            all furnishers is considered.
        consent_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Consent Id
          description: >-
            Consent token — system resolves identity + applies field access
            filtering.
        consumer_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Consumer Id
          description: >-
            Consumer profile primary key (Consumer.id) for permissible-purpose
            queries.
      type: object
      required:
        - network_ids
      title: CrossBankFinancialCrimesWatchListQueryInput
    CrossBankFinancialCrimesWatchListQueryOutput:
      properties:
        query_event_id:
          type: string
          format: uuid
          title: Query Event Id
        consumer_id:
          type: string
          format: uuid
          title: Consumer Id
        furnishing_entity_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Furnishing Entity Id
        is_listed:
          type: boolean
          title: Is Listed
        entity_level_adverse_action_eligible_indicator:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Entity Level Adverse Action Eligible Indicator
        watch_list_placement_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Watch List Placement Date
      type: object
      required:
        - query_event_id
        - consumer_id
        - is_listed
      title: CrossBankFinancialCrimesWatchListQueryOutput
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````