Integration Guide
Connect to AurelianFlo APIs via REST or MCP. All calls settle in USDC on Base using the x402 payment protocol - no API keys, no subscriptions.
Use x402-fetch (or any x402-compatible client) to handle payment automatically:
import { fetch402 } from 'x402-fetch';
const response = await fetch402(
'https://api.aurelianflo.com/api/ofac-wallet-screen/0xAbC123...',
{
method: 'GET',
headers: { 'Accept': 'application/json' },
},
{
walletClient, // viem WalletClient on Base
}
);
const result = await response.json();
console.log(result.sanctioned, result.matches);In Claude, go to Customize > Connectors and add this server URL to connect AurelianFlo tools:
https://aurelianflo.com/mcp
Claude Desktop does not use claude_desktop_config.json for remote MCP servers.
{
"mcpServers": {
"aurelianflo": {
"type": "http",
"url": "https://aurelianflo.com/mcp"
}
}
}Use this JSON only for MCP clients that support direct remote HTTP MCP configuration.
No API keys or end-user OAuth are required. Paid calls still settle in USDC on Base to the recipient address below:
0x348Df429BD49A7506128c74CE1124A81B4B7dC9d
Full spec with parameters, request/response schemas, and pricing per endpoint.
MCP9 tools, 4 prompts, and setup instructions for Claude Connectors and MCP-compatible clients.
RESTAll 8 REST endpoints grouped by category with pricing and detail pages.
RAWMachine-readable OpenAPI 3.1 spec. Import directly into Postman, Insomnia, or any tool.