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

# Detect Bundlers

> Analyze a token mint for coordinated buyers and bundler-style activity.

Returns a 0-100 bundler score, risk level, metrics, details, and recommendations.


## OpenAPI

````yaml POST /v1/token/bundle
openapi: 3.0.3
info:
  title: NovaShield Security Engine
  description: >-
    Enterprise-grade security scanning API for Solana. Analyze transactions,
    tokens, addresses, and dApps before user interaction.
  version: 3.0.0
  contact:
    name: NovaShield
    url: https://nshield.org
servers:
  - url: https://api.novashield.so
    description: Production
  - url: https://sapi.novashield.so
    description: Staging
security: []
tags:
  - name: Security Scanning
    description: >-
      Core security scanning endpoints for transactions, tokens, addresses, and
      dApps
paths:
  /v1/token/bundle:
    post:
      tags:
        - Security Scanning
      summary: Detect Bundlers
      description: Analyze a token mint for coordinated buyers and bundler-style activity.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScanBundleRequest'
      responses:
        '200':
          description: Bundle analysis complete
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScanBundleResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    ScanBundleRequest:
      type: object
      required:
        - chain
        - mint
      properties:
        chain:
          type: string
          enum:
            - solana
        mint:
          type: string
          description: Token mint address to analyze
        period:
          type: string
          enum:
            - launch
            - recent
          description: 'Analysis period (default: recent)'
    ScanBundleResponse:
      type: object
      properties:
        mint:
          type: string
        period:
          type: string
          enum:
            - launch
            - recent
        isHighRisk:
          type: boolean
          description: True if bundler risk is HIGH or CRITICAL
        analysis:
          $ref: '#/components/schemas/BundleAnalysis'
    BundleAnalysis:
      type: object
      properties:
        bundlerScore:
          type: integer
          description: 0-100, higher means more coordinated/botted
        riskLevel:
          type: string
          enum:
            - LOW
            - MEDIUM
            - HIGH
            - CRITICAL
        metrics:
          type: object
          properties:
            timingCluster:
              type: number
            walletSimilarity:
              type: number
            sizePatterns:
              type: number
            distribution:
              type: number
        details:
          type: object
          properties:
            totalTransactions:
              type: integer
            uniqueWallets:
              type: integer
            suspiciousWallets:
              type: integer
            analysisPeriod:
              type: string
        verdict:
          type: string
        concerns:
          type: array
          items:
            type: string
        recommendations:
          type: array
          items:
            type: string
        topBuyers:
          type: array
          items:
            type: object
            properties:
              wallet:
                type: string
              totalAmount:
                type: number
              supplyPercentage:
                type: number
              transactionCount:
                type: integer
              isDevRelated:
                type: boolean
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_REQUEST
            message:
              type: string
              example: Invalid request parameters
            details:
              type: string
        timestamp:
          type: string
          format: date-time
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````