← Marketplace
Base
Co
Co is an x402-native service at https://centry.cybercentry.co.uk, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 10 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Services Base Token Verification Check a Base token contract before buying: detects honeypots, armed freeze-and-seize, a live pause, fake B20s and ticker-impersonation copycats, and separately discloses issuer controls (admin centralisation, supply cap, transfer policy, rebase) so a legitimate token is not mistaken for a scam | /m/bz-centry-cybercentry-co-uk/api/services/base_token_verification | 1 USDC |
Services Cyber Security Consultant Ask a cyber security question and get an expert answer backed by real-time threat intelligence, covering current threats, best practice and compliance | /m/bz-centry-cybercentry-co-uk/api/services/cyber_security_consultant | 1 USDC |
Services Ethereum Token Verification Check an Ethereum or EVM token contract before buying: rug pull, hidden tax, liquidity legitimacy and holder concentration risk. Token due diligence returned as a scan report | /m/bz-centry-cybercentry-co-uk/api/services/ethereum_token_verification | 1 USDC |
Services Media Content Verification Check whether an image or video is authentic and where it came from: C2PA content credentials, provenance and metadata extraction, with an avatar and logo impersonation check. Detect AI-generated or tampered media before trusting it | /m/bz-centry-cybercentry-co-uk/api/services/media_content_verification | 1 USDC |
Services Openclaw Ai Agent Verification Audit an AI agent configuration for security holes: prompt injection exposure, missing authentication, over-broad tool permissions and unsafe gateway settings. Check an agent before you trust it or connect to it | /m/bz-centry-cybercentry-co-uk/api/services/openclaw_ai_agent_verification | 1 USDC |
Services Private Data Verification Prove a fact about private data without revealing the data: validates text integrity and returns a zero-knowledge proof (ZKP) with a verification ID and URL | /m/bz-centry-cybercentry-co-uk/api/services/private_data_verification | 1 USDC |
Services Quantum Cryptography Verification Encrypt text with quantum-resistant (post-quantum) cryptography, for secrets that must outlast classical encryption. Returns a record ID and a decrypt URL | /m/bz-centry-cybercentry-co-uk/api/services/quantum_cryptography_verification | 1 USDC |
Services Solidity Code Verification Audit Solidity smart contract source for vulnerabilities before you deploy or call it. Returns findings with a clear risk level | /m/bz-centry-cybercentry-co-uk/api/services/solidity_code_verification | 1 USDC |
Services Wallet Verification Screen a wallet address for sanctions and risk: OFAC SDN sanctions screening, risk scoring and suspicious-activity detection across 31 EVM chains. Check a counterparty before you transact with it | /m/bz-centry-cybercentry-co-uk/api/services/wallet_verification | 1 USDC |
Services Web Application Verification Scan a website or dApp frontend for vulnerabilities using OWASP checks, before connecting a wallet to it or trusting it with user data | /m/bz-centry-cybercentry-co-uk/api/services/web_application_verification | 1 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-centry-cybercentry-co-uk/api/services/base_token_verification')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-centry-cybercentry-co-uk/api/services/base_token_verification # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …