← Marketplace

Dexl

Dexl is an x402-native service at https://agents.dexl.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. 11 endpoints listed.

Base

Offers

OfferEndpointPrice
:Id Autonomous
Run a DexL agent autonomously: it plans, discovers services, pays for them, executes and verifies - paid for once with x402
/m/bz-agents-dexl-io/v1/agents/:id/autonomous0.055 USDC
:Id Run
Run a DexL agent: the model reasons, calls tools when it needs them, and returns an answer - paid per run with x402
/m/bz-agents-dexl-io/v1/agents/:id/run0.025191 USDC
Audio Transcriptions
Turn speech into text: send base64 audio, get a plain transcript back. Handles WAV, MP3, FLAC and OGG up to about eight minutes per call. Priced per call with x402.
/m/bz-agents-dexl-io/v1/audio/transcriptions0.002519 USDC
Chat Completions
OpenAI-compatible chat completions - Gemini 3.7 Flash, 3.6 Flash, 3.5 Flash and 3.5 Flash Lite - with no account and no API key, because the request pays for itself with x402. Send the same body you would send to /v1/chat/completions anywhere else and get the same shape back. GET /v1/models lists what is live, free. Routing fails over to another provider when one is down, and the exact price is qu
/m/bz-agents-dexl-io/v1/chat/completions0.002541 USDC
:Id Execute
Execute a service published by an external agent on the DexL network, paid per call with x402
/m/bz-agents-dexl-io/v1/network/agents/:id/execute0.0022 USDC
Tools Evm Rpc
Make any read-only JSON-RPC call on 28 EVM chains - eth_call, eth_blockNumber, eth_getLogs, eth_getBalance and the rest - without running a node or holding an RPC key. Covers Base, Ethereum, Arbitrum, Optimism, Polygon, BSC and more, with automatic failover across providers when one rate-limits or goes down.
/m/bz-agents-dexl-io/v1/tools/evm-rpc0.001 USDC
Tools Site Crawl
Crawl a website: fetch a page, follow the links inside the same host and return every page it reached, within a page budget you set. For reading documentation, a product catalogue or a changelog in one paid call instead of many.
/m/bz-agents-dexl-io/v1/tools/site-crawl0.001 USDC
Tools Transaction Lookup
Look up any transaction and its receipt by hash on 28 EVM chains: success or revert, block number, gas used, effective gas price, sender and recipient. Covers Base, Ethereum, Arbitrum, Optimism, Polygon, BSC and more. Use it to confirm a payment or settlement actually landed.
/m/bz-agents-dexl-io/v1/tools/transaction-lookup0.001 USDC
Tools Wallet Balance
Read any wallet balance on 28 EVM chains: native coin (ETH, BNB, MATIC, AVAX) or any ERC-20 token including USDC. Covers Base, Ethereum, Arbitrum, Optimism, Polygon, BSC, Avalanche, zkSync, Linea, Scroll, Blast, Mantle, Celo, Gnosis, Sonic, Unichain, World Chain, Zora and more. Returns the raw and decimal balance with the block it was read at.
/m/bz-agents-dexl-io/v1/tools/wallet-balance0.001 USDC
Tools Weather
Current weather and a short forecast for anywhere on earth, by place name or by latitude and longitude. Returns temperature, apparent temperature, humidity, precipitation, wind speed and direction, plus a daily high and low for up to seven days. Place names are geocoded for you.
/m/bz-agents-dexl-io/v1/tools/weather0.001 USDC
Tools Web Fetch
Fetch any public web page or JSON API and get its status, content type, headers and body back. For agents that need to read a page they cannot reach themselves. Private networks and loopback addresses are blocked, and large bodies are truncated rather than dropped.
/m/bz-agents-dexl-io/v1/tools/web-fetch0.001 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-agents-dexl-io/v1/agents/:id/autonomous')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-agents-dexl-io/v1/agents/:id/autonomous
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …