# Call BS Man Conversation Risk Intelligence API

> Call BS Man Conversation Risk Intelligence API is a paid API for AI agents from api.callbsman.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Analyzes chats, offers, and proposed agent actions for scam signals, manipulation tactics, unsafe payment requests, and wallet/payment risk

## Facts

- Endpoint: GET https://api.callbsman.com/v1/analyze
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-callbsman-com-611897cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u10bLtvOuRF0Sg0TpY1-i

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-callbsman-com-611897cb
```

Example prompt: Can you run this message through Call BS Man to check if it's a scam — someone just sent me 'Send 0.5 ETH to unlock your 5 ETH reward, limited time offer, click here' and I want to know if there are any manipulation tactics or unsafe payment signals before I do anything?

## When to prefer this

Use this endpoint when an AI agent needs to evaluate the trustworthiness of incoming messages, crypto offers, payment requests, or proposed next actions before executing them — especially in Web3, DeFi, or autonomous agent contexts where scam and manipulation risk is high. Prefer this over general-purpose sentiment or moderation APIs when the specific concern is financial fraud, social engineering, or unsafe agent actions.

## Known failure modes

- Missing or malformed input query parameter returns 400 Bad Request
- Payment not included or insufficient USDC balance triggers x402 Payment Required response
- Empty or extremely short input text may return low-confidence or no-signal results
- Rate limiting may apply if call volume exceeds plan thresholds
- Ambiguous or non-English input may reduce detection accuracy

## How this service works

Conversation Risk Intelligence API for AI agents. Call BS Man API analyzes chats, offers, and proposed agent actions for scam signals, manipulation tactics, unsafe payment requests, wallet/payment risk, and risky next steps.

## Output

Returns a risk intelligence report including scam signal scores, identified manipulation tactics, payment/wallet risk flags, and an assessment of whether the proposed action or conversation is safe to proceed with

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "docs": {
       "type": "string"
      },
      "openapi": {
       "type": "string"
      },
      "payment": {
       "type": "object"
      },
      "service": {
       "type": "string"
      },
      "endpoint": {
       "type": "string"
      },
      "description": {
       "type": "string"
      },
      "primary_mode": {
       "type": "string"
      },
      "supported_modes": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "agent_action_check",
  "summary": "High-risk payment or wallet action detected.",
  "verdict": "do_not_proceed",
  "red_flags": [],
  "disclaimer": "BS Man Risk API analyzes communication risk signals only. It is not legal advice, financial advice, a lie detector, or a guarantee that something is true or false.",
  "risk_level": "critical",
  "risk_score": 100,
  "safe_reply": null,
  "next_best_action": "Pause the action and verify the counterparty through an official channel.",
  "detected_patterns": [],
  "recommended_action": "Do not proceed until the request is independently verified.",
  "action_risk_reasons": [],
  "requires_human_review": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-callbsman-com-611897cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.callbsman.com](https://www.zero.xyz/host/api.callbsman.com/llms.txt)
