← Marketplace
Base
Compliapi
Compliapi is an x402-native service at https://api.compliapi.com, 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. 7 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Geo :Ip Address Geolocate an IP address (city, region, country) and flag whether the country carries sanctions designations. Call for geo-compliance checks before serving restricted content, payments or shipments. | /m/bz-api-compliapi-com/api/v1/geo/:ip_address | 0.01 USDC |
Country :Country Check whether a country or region carries sanctions designations, such as comprehensive OFAC embargoes. Call to gate signups, shipments or transactions by country. Accepts a country name or ISO code; returns the designating lists with source URLs. | /m/bz-api-compliapi-com/api/v1/screen/country/:country | 0.01 USDC |
Crypto :Address Screen a cryptocurrency wallet address (EVM, Bitcoin, Tron, Solana or any chain) or ENS name against OFAC SDN, OFAC Consolidated and 10+ global sanctions, crime and risk lists. Call before accepting a deposit, sending a withdrawal, or onboarding a wallet. Returns per-list matches with source URLs; `sanctioned` means a sanctions-list hit, `flagged` also covers crime and risk lists. | /m/bz-api-compliapi-com/api/v1/screen/crypto/:address | 0.01 USDC |
Email :Email Screen an email address against OFAC SDN and other global sanctions lists. Call during onboarding or KYC review to check whether an email is associated with a sanctioned entity. Returns per-list matches with source URLs. | /m/bz-api-compliapi-com/api/v1/screen/email/:email | 0.01 USDC |
Id :Government Id Screen a government-issued identifier (passport, national ID, tax ID) against OFAC SDN and other global sanctions lists, with exact and substring matching ranked by similarity. Call during KYC/KYB identity verification. Returns per-list matches with source URLs. | /m/bz-api-compliapi-com/api/v1/screen/id/:government_id | 0.01 USDC |
Screen Website Screen a website URL or domain against OFAC SDN and other global sanctions lists. Call before paying, advertising on, or integrating with a website to check for sanctions associations. Returns per-list matches with source URLs. | /m/bz-api-compliapi-com/api/v1/screen/website | 0.01 USDC |
Vpn :Ip Address Detect whether an IP address is using a VPN, proxy or other anonymization service. Call before trusting an IP's geolocation for compliance rules, fraud checks or access gating. Returns vpn true/false, or "unknown" when no privacy data exists for the IP. | /m/bz-api-compliapi-com/api/v1/vpn/:ip_address | 0.01 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-api-compliapi-com/api/v1/geo/:ip_address')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-api-compliapi-com/api/v1/geo/:ip_address # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …