# X Data Gateway — Text Scam Scanner

> X Data Gateway — Text Scam Scanner is a paid API for AI agents from x-data-gateway.annushka1190.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Scans a text body for scam signals and returns a risk/scam score or classification using local scoring logic.

## Facts

- Endpoint: POST https://x-data-gateway.annushka1190.workers.dev/v1/text/scam-scan
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x-data-gateway-text-scam-scanner-3d80e3d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mnb54_sV1ZlAhn8k46cJq

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 x-data-gateway-text-scam-scanner-3d80e3d6 -d '<json body>'
```

Example prompt: Can you check this message for scam signals: 'Send 0.1 ETH to this wallet and receive 10x back guaranteed — limited time!' — I want to know if it's a scam before I respond.

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call scam/fraud classification for arbitrary text — especially crypto-related messages, DMs, or token promotions — without needing API keys. Ideal for agents operating in the X/Twitter or Base crypto ecosystem that need inline trust-and-safety checks on user-submitted content.

## Known failure modes

- Empty or missing 'body' field returns a validation error
- Very short or ambiguous text may yield low-confidence or inconclusive scores
- Service may return generic error if the Workers backend is unavailable
- Upstream scoring model limitations may miss novel or highly obfuscated scam patterns

## How this service works

Live X/Twitter read API plus Base market intel for AI agents: profiles, search, timelines, replies, followers; Base gas, spot prices, token meta/pairs, Base token verdict cards, trending, DefiLlama TVL, wallet intel, x402 probe and text utilities. REST + MCP. Pay per call in USDC via x402 on Base and Solana — no API keys. Free upstream data + local scoring.

## Output

Returns a JSON object containing scam scan results for the submitted text body, likely including a risk or confidence score, scam signal flags, and classification metadata derived from local scoring logic.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to scan (JSON body)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x-data-gateway-text-scam-scanner-3d80e3d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x-data-gateway.annushka1190.workers.dev](https://www.zero.xyz/host/x-data-gateway.annushka1190.workers.dev/llms.txt)
