# BlockInt C3 Fraud Report Full-Text Search

> BlockInt C3 Fraud Report Full-Text Search is a paid API for AI agents from blockint.ai, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Full-text search across 64,000+ public C3 community fraud reports by keyword, address, domain, crime type, or project name.

## Facts

- Endpoint: GET https://blockint.ai/api/v1/c3-reports/search
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockint-ai-647bf42c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBV8RgOs2JrKhQZcaJwjA

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 blockint-ai-647bf42c
```

Example prompt: Search the C3 community fraud reports database for anything mentioning the wallet address 0xAbC123... or the project name 'QuickSwap Finance' — show me up to 50 results.

## When to prefer this

Use this endpoint when you need free-text search across the entire C3 fraud report corpus — ideal for investigating specific wallet addresses, domains, project names, or crime types across all 64,000+ reports in a single query. Prefer this over the paginated list endpoint when you have a specific keyword or entity to look up rather than browsing all reports by filter.

## Known failure modes

- Missing required query parameter 'q' returns a 400 Bad Request error
- Limit exceeding 100 returns a validation error
- No matching reports returns an empty results array
- Service unavailable or payment failure returns a 402 or 5xx error
- Very broad queries may return noisy or irrelevant results up to the limit

## How this service works

Search Blockint C3 reports by query across supported networks.

## Output

A list of up to 100 matching fraud reports from the C3 community database, each containing report details such as the reported address, domain, crime type, project name, and relevant text excerpts matching the search query.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "phishing",
   "limit": 20
  }
 }
}
```

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query — keyword, wallet address, domain, or crime type"
      },
      "limit": {
       "type": "number",
       "description": "Max results to return (default 20, max 100)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockint-ai-647bf42c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockint.ai](https://www.zero.xyz/host/blockint.ai/llms.txt)
