← Marketplace

Co

Co is an x402-native service at https://agent.atinamos.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. 4 endpoints listed.

Base

Offers

OfferEndpointPrice
Agent Buyer Check
Pre-purchase due-diligence and evidence check for an AI agent or paid machine service. Use before spending to resolve the agent identity, inspect current service offerings, prices and SLA, review current marketplace activity, and surface explicit evidence gaps. Missing evidence is not treated as negative reputation and no universal trust score or purchase recommendation is manufactured.
/m/bz-agent-atinamos-co-uk/agent/buyer-check0.1 USDC
Agent Json Repair
Deterministic JSON validation and conservative repair for AI-agent payloads. Repairs unquoted object keys, single-quoted strings, trailing commas, Markdown code fences, UTF-8 BOMs and JSON-compatible Python literals, including nested or repeated defects. No LLM or invented data; every applied transformation is reported.
/m/bz-agent-atinamos-co-uk/agent/json-repair0.005 USDC
Agent Render Check
Independent website QA and pre-handover verification for AI agents. Submit one public website URL. Atinamos loads the real site in desktop and mobile Chromium, checks HTTP and browser failures, failed requests, console errors and warnings, captures screenshots, and returns machine-readable evidence. Poll the returned status_url for results.
/m/bz-agent-atinamos-co-uk/agent/render-check0.25 USDC
Agent Technical Seo Crawl
Bounded deterministic technical SEO crawl of up to 250 pages for a public website. Returns machine-readable technical findings, coverage evidence, authoritative JSON, a derived HTML report and a SHA-256 evidence hash. Payment settles when the crawl job is accepted into the queue; poll status_url for the later crawl outcome.
/m/bz-agent-atinamos-co-uk/agent/technical-seo-crawl0.05 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-agent-atinamos-co-uk/agent/buyer-check')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-agent-atinamos-co-uk/agent/buyer-check
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …