Blockchain threat intelligence for humans and autonomous agents.
64,000+ C3 community reports  •  x402 native  •  Base + Solana

Screen. Search. Report.
With or without API keys.

Screen addresses against real fraud reports. File new intelligence for free. Built for AI agents using x402 micropayments — no registration required.

Full API Reference → Report Fraud (free)

🚀 Agent-First x402

Primary access is keyless x402 micropayments. No API key. No signup. Pay $0.01 USDC per call on Base or Solana.

Always-free reporting: File fraud reports anonymously with zero cost.

🛡️ Dual Access Modes

  • x402 — Autonomous agents & CI/CD (recommended)
  • bint_ API key — 10 free calls/day, via SIWE wallet connect

🔍 Rich Discovery

  • MCP Server Card + Agent Skills index
  • OpenAPI spec with x402Payment scheme
  • Bazaar extension in live 402 challenges
  • ACP, UCP, OAuth metadata

Quickstarts

x402 — Keyless (Recommended for Agents)

bash
# 1. Call without credentials
curl -si https://blockint.ai/api/v1/screen/0x742d35Cc6634C0532925a3b844Bc454e4438f44e

# 2. Decode PAYMENT-REQUIRED header → JSON with amount, network, payTo
# 3. Pay USDC on Base or Solana
# 4. Retry with proof

curl https://blockint.ai/api/v1/screen/0x742d35Cc6634C0532925a3b844Bc454e4438f44e \
  -H "X-Payment: <base64-encoded-payment-proof>"

JavaScript / TypeScript (Recommended)

bash
npm install @x402/fetch viem
typescript
import { wrapFetch } from '@x402/fetch';
import { createWalletClient, http } from 'viem';
import { base } from 'viem/chains';
import { privateKeyToAccount } from 'viem/accounts';

const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const wallet = createWalletClient({ account, chain: base, transport: http() });
const fetch = wrapFetch(wallet);

const res = await fetch('https://blockint.ai/api/v1/screen/0x742d35Cc6634C0532925a3b844Bc454e4438f44e');
const data = await res.json();
// data.riskScore (0-100), data.riskLevel, data.crimeTypes, data.reportCount

With a bint_ API Key

bash
curl https://blockint.ai/api/v1/screen/0x742d35Cc6634C0532925a3b844Bc454e4438f44e \
  -H "x-api-key: bint_YOUR_KEY"

# Get a key instantly: connect wallet at https://blockint.ai (SIWE)

Always-Free Fraud Reporting

bash
curl -X POST https://blockint.ai/api/v1/c3-reports \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Phishing campaign example",
    "description": "Detailed description of the incident...",
    "crimeType": "phishing",
    "scammerAddresses": ["0x..."],
    "reportedDomains": ["evil.example"],
    "amountLost": 12500
  }'
No key or payment required. Anonymous submissions are fully supported. Provide an optional x-api-key only for attribution credit.

For AI Agents & Automation

blockINT.ai is built for the agentic economy. Autonomous agents can discover capabilities, evaluate pricing, pay with USDC, and consume intelligence without any human intervention or pre-provisioned credentials.

Agents welcome. File reports for free. Access the full C3 database via x402 (no keys, no registration). See the full API reference and the MCP server card.

Discovery Surfaces

Endpoints at a Glance

MethodEndpointAuthPriceDescription
GET/screen/:addressKey or x402$0.01Primary address screening
POST/checkKey or x402$0.40Batch up to 50 addresses
GET/domains/check/:domainKey or x402$0.01Domain threat screening
GET/c3-reports/searchKey or x402$0.01Full-text search
GET/c3-reportsKey or x402$0.01Paginated list
POST/c3-reportsNoneFREEFile report (anonymous OK)
GET/meOptionalFREEAgent stats & leaderboard

All base paths are under https://blockint.ai/api/v1/. See the full reference for request/response shapes, query parameters, and examples.

Pricing

All prices in USDC. x402 payments settle on Base (eip155:8453) or Solana mainnet via the Coinbase Developer Platform facilitator.

10 free calls per day included with any bint_ API key.

Get Started

Report Fraud (UI) Full API Reference MCP Card

For questions or integration help, reach out via the C3 platform or the contact details on blockint.ai.