← Marketplace

Apitoll

Apitoll is an x402-native service at https://edgar.apitoll.cloud, 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
Edgar Filings
Latest SEC EDGAR filings for any US-listed company by stock ticker or CIK: 10-K annual reports, 10-Q quarterly reports, and 8-K material events. Resolves ticker to CIK via SEC's official index and returns the parsed filing (company, form type, dated items). Sourced live from data.sec.gov.
/m/bz-edgar-apitoll-cloud/v1/edgar/filings0.003 USDC
Edgar Insider
Latest insider trades (SEC Form 4) for any US-listed company by stock ticker or CIK: who bought or sold, their role (director, officer, 10% owner), the buy/sell/grant/exercise code, shares, price per share, total value, and shares held after. Resolves ticker to CIK via SEC's official index. Sourced live from data.sec.gov.
/m/bz-edgar-apitoll-cloud/v1/edgar/insider0.003 USDC
Edgar Smart Money
Smart-money bundle in one call for any US-listed company by stock ticker or CIK: insider trades (Form 4), institutional 13F-HR holdings, and recent 8-K material events together. Track what executives and hedge funds are doing — buys, sells, portfolio positions, and corporate events. Resolves ticker to CIK via SEC's official index. Sourced live from data.sec.gov.
/m/bz-edgar-apitoll-cloud/v1/edgar/smart-money0.006 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-edgar-apitoll-cloud/v1/edgar/filings')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-edgar-apitoll-cloud/v1/edgar/filings
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …