← Marketplace

X402-gateway

X402-gateway is an x402-native service at https://x402-gateway.ai, 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. 3 endpoints listed.

Base

Offers

OfferEndpointPrice
Company :Orgnr
Swedish company basics by org.nr. Look up any Swedish organisation by its 10-digit organisationsnummer (e.g. /api/v1/se/company/5567037485 for Spotify AB): registered and trade names, legal form, active status, bankruptcy/liquidation/reconstruction, registered address, SNI 2007 industry codes and activity description. Live from Bolagsverket's official register with SCB business data. No API key —
/m/bz-x402-gateway-ai/api/v1/se/company/:orgnr0.005 USDC
:Orgnr Annual Report
Swedish annual report key figures (iXBRL), decoded. Financials from a Swedish company's latest digitally filed annual report (årsredovisning, 2020+). We decode Bolagsverket's iXBRL (K2/K3) into net revenue, operating profit, profit after financial items, total assets, equity and average employees, with fiscal year and filing date. Example: /api/v1/se/company/5567647176/annual-report. Digital filin
/m/bz-x402-gateway-ai/api/v1/se/company/:orgnr/annual-report0.02 USDC
Company Search
Search Swedish companies by name. Find a Swedish company's organisationsnummer from its name (e.g. /api/v1/se/company/search?name=spotify). Fuzzy trigram search over our own index of 1.9 million Swedish legal entities, rebuilt weekly from Bolagsverket's and SCB's bulk files — Bolagsverket's own API has no name search. Returns org.nr, name, legal form, city and active status per hit. Legal entities
/m/bz-x402-gateway-ai/api/v1/se/company/search0.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-x402-gateway-ai/api/v1/se/company/:orgnr')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-x402-gateway-ai/api/v1/se/company/:orgnr
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …