# blockint.ai C3 Community Fraud Reports List

> blockint.ai C3 Community Fraud Reports List 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).

Lists paginated C3 community fraud reports with optional filtering by crime type (e.g. phishing, rug pull, hack)

## Facts

- Endpoint: GET https://blockint.ai/api/v1/c3-reports
- 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-20f0a882
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7thwc0ql_gm3v6Rzznh8V

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-20f0a882
```

Example prompt: Pull me the first 100 C3 community fraud reports filtered by pig_butchering crime type from blockint.ai — and give me the nextCursor so I can grab the next page.

## When to prefer this

Use this endpoint when you need to browse or enumerate the full C3 community fraud report dataset, optionally filtered by a specific crime category. Prefer this over the search endpoint when you want structured paginated access to all reports rather than keyword-based full-text search. Use when building feeds, dashboards, or batch analysis pipelines over the fraud report corpus.

## Known failure modes

- Invalid crimeType enum value returns 400 error
- Invalid or expired since cursor returns empty results or 400
- Exceeding max limit of 100 returns validation error
- Payment failure (402) if x402 payment is not provided
- Rate limiting if too many requests are made in quick succession

## How this service works

List C3 community fraud reports, cursor-paginated. Filter by crime type. Use the returned nextCursor for subsequent pages.

## Output

A paginated list of C3 community fraud reports, each containing crime type, report details, addresses or domains involved, and a nextCursor timestamp for fetching the next page of results.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 50,
   "crimeType": "phishing"
  }
 }
}
```

## 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": {
      "limit": {
       "type": "number",
       "description": "Page size (default 50, max 100)"
      },
      "since": {
       "type": "string",
       "description": "ISO 8601 cursor timestamp for pagination (nextCursor from previous response)"
      },
      "crimeType": {
       "type": "string",
       "description": "Filter by crime type: pig_butchering | hack | phishing | rug_pull | romance_scam | ransomware | money_laundering | other"
      }
     }
    }
   },
   "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-20f0a882/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)
