← Marketplace

Ausca

Ausca is an x402-native service at https://ausca.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. 5 endpoints listed.

Base

Offers

OfferEndpointPrice
V1 Analyze Document
Extract normalized forms, tables, signatures, or layout from a document.
/m/bz-ausca-com/v1/analyze-document0.3 USDC
V1 Extend Inbox
Add purchased time to the current expiry of one active receive-only inbox. The same inbox id, address, messages, read/delete capability, and limits remain in place. Deleted or expired inboxes cannot be revived, and prepaid expiry cannot exceed 30 days from the extension time.
/m/bz-ausca-com/v1/extend-inbox0.05 USDC
V1 Lease Browser
Lease one ordinary remote browser with standard CDP access for 10, 30, or 60 minutes. No automation, proxy, stealth, or target-success promise.
/m/bz-ausca-com/v1/lease-browser0.05 USDC
V1 Open Inbox
Start one renewable random receive-only email address with 1 hour, 24 hours, or 7 days prepaid, then wait for and read bounded inbound mail. Extend the same active address when more time is needed. No outbound email or mailbox suite.
/m/bz-ausca-com/v1/open-inbox0.05 USDC
V1 Transcribe Media
Transcribe an immutable audio or video artifact into normalized text.
/m/bz-ausca-com/v1/transcribe-media0.4 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-ausca-com/v1/analyze-document')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-ausca-com/v1/analyze-document
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …