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

# Publish network intelligence signals

> Publish up to 500 shared fraud signals (email, BIN, IP, etc.) for other opt-in participants. Requires secret key with `network:contribute` or `fraud:report`. Enable **Contribuir** under Inteligencia (`/dashboard/network`). Consumed during assess when CLM-ADD-NET-C is active. Guide: /guides/clausum-intelligence-network.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/network/intelligence
openapi: 3.1.0
info:
  title: Clausum API
  version: 1.3.0
  description: >-
    REST API for real-time fraud risk assessment (pay-in and payout), fraud
    reporting, blocklist management, and event ingestion. API version 1.3.0.
    Create Partner API keys (`clm_pub_*`, `clm_sk_*`) in the dashboard under
    Conexiones → Claves API. Webhook ingest uses separate `clm_wh_*` keys
    (Conexiones → Entrada webhooks).
  contact:
    name: Clausum API Support
    email: api@clausum.ai
    url: https://clausum.ai
servers:
  - url: https://sandbox.clausum.ai
    description: Sandbox — integrators and trials
  - url: https://dashboard.clausum.ai
    description: Production dashboard and Partner API
security:
  - apiKeyAuth: []
tags:
  - name: Risk
    description: Real-time risk scoring for pay-in checkout and sessions.
  - name: Payout
    description: Outbound disbursement and treasury transfer assessment.
  - name: Fraud
    description: Report confirmed fraud and trigger the downstream chain.
  - name: Network
    description: >-
      Collaborative fraud intelligence — publish and query shared signals
      between opt-in participants.
  - name: Blocklists
    description: Manage dynamic blocklists used during assessment.
  - name: Cases
    description: Manage fraud cases (expedientes) and submit them to regulators.
  - name: Events
    description: Ingest raw events from your payment providers.
  - name: System
    description: Health and status checks.
paths:
  /api/v1/network/intelligence:
    post:
      tags:
        - Network
      summary: Publish network intelligence signals
      description: >-
        Publish up to 500 shared fraud signals (email, BIN, IP, etc.) for other
        opt-in participants. Requires secret key with `network:contribute` or
        `fraud:report`. Enable **Contribuir** under Inteligencia
        (`/dashboard/network`). Consumed during assess when CLM-ADD-NET-C is
        active. Guide: /guides/clausum-intelligence-network.
      operationId: publishNetworkIntelligence
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NetworkIntelligencePublishRequest'
            examples:
              bank_feed:
                summary: Bank fraud feed batch
                value:
                  entries:
                    - list_type: email
                      value: confirmed-fraud@example.com
                      severity: block
                      reason_code: confirmed_fraud
                      confidence: 90
                      source: bank_feed
      responses:
        '200':
          description: Signals accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NetworkIntelligencePublishResponse'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: >-
            Contribution disabled (NETWORK_CONTRIBUTE_DISABLED) or missing
            permission
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      security:
        - apiKeyAuth: []
components:
  schemas:
    NetworkIntelligencePublishRequest:
      type: object
      properties:
        entries:
          type: array
          maxItems: 500
          items:
            $ref: '#/components/schemas/NetworkIntelligenceEntry'
        list_type:
          type: string
        value:
          type: string
        source:
          type: string
    NetworkIntelligencePublishResponse:
      type: object
      properties:
        success:
          type: boolean
        accepted:
          type: integer
        skipped:
          type: integer
        errors:
          type: array
          items:
            type: object
            additionalProperties: true
        list_types_supported:
          type: array
          items:
            type: string
    ApiError:
      type: object
      properties:
        error:
          oneOf:
            - type: string
            - type: object
              properties:
                code:
                  type: string
                message:
                  type: string
                details:
                  type: object
                  additionalProperties: true
    NetworkIntelligenceEntry:
      type: object
      required:
        - list_type
        - value
      properties:
        list_type:
          type: string
          enum:
            - email
            - email_domain
            - ip_address
            - ip_range
            - device_fingerprint
            - card_bin
            - card_hash
            - country
            - phone
            - customer_id
        value:
          type: string
        severity:
          type: string
          enum:
            - block
            - flag
            - review
          default: flag
        reason_code:
          type: string
        reason_detail:
          type: string
        confidence:
          type: integer
          minimum: 0
          maximum: 100
        source:
          type: string
          enum:
            - api
            - bank_feed
            - fraud_report
            - ingest
        external_ref:
          type: string
        expires_at:
          type: string
          format: date-time
  responses:
    ValidationError:
      description: Invalid request body or parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    apiKeyAuth:
      type: http
      scheme: bearer
      description: >-
        Partner secret or publishable key, e.g. `clm_sk_...` or `clm_pub_...`
        (assess only).
      x-default: clm_sk_your_secret_key

````