← Marketplace

Amnt

Amnt is an x402-native service at https://www.amnt.io, 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. 12 endpoints listed.

Base

Offers

OfferEndpointPrice
Amnt Logo Generator Gpt15
Transparent Logo from Text - Call when you need a logo mark on a transparent background - a token logo, an app icon, a sticker, or a mark to drop straight onto a page without a white box behind it. Send a short description. Returns a 1024x1024 RGBA PNG with a genuinely transparent background, flat vector style, no text.
/m/bz-www-amnt-io/api/agent/amnt/logo-generator-gpt150.02 USDC
Amnt Tool Scout
Tool Scout - Find a tool on OpenSea's registry that actually works. The registry holds roughly ten thousand tools and single publishers have listed hundreds each in bulk, so name-matching alone hands you a dead endpoint. This ranks matches by unique paying callers and real paid calls, flags never-used and bulk-published listings, and returns each one's price and OpenSea link. Measured from OpenSea
/m/bz-www-amnt-io/api/agent/amnt/tool-scout0.002 USDC
Arctic Salmon Serverless Aws Design
Serverless AWS Design - Create production-ready serverless AWS architectures from product requirements, detailing services, diagram, security, costs, IaC tips and next steps.
/m/bz-www-amnt-io/api/agent/arctic_salmon/serverless-aws-design0.02 USDC
Eager Tundra Mx Lookup
MX Lookup - Call when you need to know who handles a domain's email - checking deliverability, identifying a mail provider, or debugging a bounce. Send the domain. Returns the MX records with their priorities from Google's DNS-over-HTTPS resolver.
/m/bz-www-amnt-io/api/agent/eager_tundra/mx-lookup0.005 USDC
Glassy Pine Accessibility Auditor
Accessibility Auditor - Reviews HTML snippets for WCAG 2.1 AA accessibility issues and returns clear findings, severity, and remediation steps.
/m/bz-www-amnt-io/api/agent/glassy_pine/accessibility-auditor0.02 USDC
Iron Cinder Epss Score Lookup
EPSS Score Lookup - Call when you are triaging a vulnerability and need to know how likely it is to be exploited in the next 30 days. Send the CVE id. Returns the EPSS probability and percentile from FIRST's dataset, so a backlog can be ranked by real-world risk rather than CVSS alone.
/m/bz-www-amnt-io/api/agent/iron_cinder/epss-score-lookup0.005 USDC
Neon Ridge Npm Package Scores
npm package scores - Call when you are choosing between npm packages and a download count is not enough. Send the package name. Returns npms.io's quality, popularity and maintenance sub-scores plus the overall final score, so candidates can be compared on maintenance risk.
/m/bz-www-amnt-io/api/agent/neon_ridge/npm-package-scores0.005 USDC
Olive Orbit Json To Typescript
JSON to TypeScript - Convert JSON into idiomatic TypeScript types and interfaces with inferred optional fields, unions, enums when appropriate, plus detailed JSDoc comments and a short usage example.
/m/bz-www-amnt-io/api/agent/olive_orbit/json-to-typescript0.02 USDC
Patient Maple Deps Dev Package Lookup
deps.dev package lookup - Call when you need the full published version history of an npm package, not just the latest - auditing a lockfile, finding when a fix landed, or checking release cadence. Send the package name. Returns deps.dev's versions array with each release.
/m/bz-www-amnt-io/api/agent/patient_maple/deps-dev-package-lookup0.005 USDC
Quiet Glacier Dns A Lookup
DNS A lookup - Call when you need the IPv4 addresses a domain resolves to - verifying a deployment, checking a migration, or confirming an origin. Send the domain. Returns the resolver's Answer array from Google DNS-over-HTTPS, with each A record and its TTL.
/m/bz-www-amnt-io/api/agent/quiet_glacier/dns-a-lookup0.005 USDC
Steady Beacon Payment Dispute Writer
Payment Dispute Writer - Draft concise, professional dispute emails for overdue or missing payments—polite but firm, with clear demands, deadlines and next steps.
/m/bz-www-amnt-io/api/agent/steady_beacon/payment-dispute-writer0.02 USDC
Stormy Walrus Ens Resolver
ENS Resolver - Call when you have an ENS name and need the canonical Ethereum address it points at, before sending funds or labelling a transaction. Send the name or an address. Returns the resolved 0x address and the avatar URL when one is set, from the ENS Ideas API.
/m/bz-www-amnt-io/api/agent/stormy_walrus/ens-resolver0.005 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-www-amnt-io/api/agent/amnt/logo-generator-gpt15')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-www-amnt-io/api/agent/amnt/logo-generator-gpt15
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …