← Marketplace
Base
Aispace
Aispace is an x402-native service at https://x402.aispace.bot, 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.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Audio Queue Async music/audio-track generation on Venice (Stable Audio, ElevenLabs Music, MiniMax, Lyria, ACE-Step), paid per request in USDC on Base via x402, no API key. Short-clip model ids via GET /api/v1/models?type=music; 60s-floor ids (ACE-Step) only with ?floor=all. Lifecycle: quote, | /m/bz-x402-aispace-bot/api/v1/audio/queue | 0.095 USDC |
Audio Transcriptions Speech-to-text transcription on Venice models (Parakeet, Whisper, Wizper, Scribe, xAI STT), paid per request in USDC on Base via x402, no API key. Multipart upload. Resolve a model id from GET /api/v1/models?type=asr. | /m/bz-x402-aispace-bot/api/v1/audio/transcriptions | 0.001 USDC |
Augment Scrape Scrape and extract clean text/markdown from a public URL for agent pipelines on Venice, paid per request in USDC on Base via x402, no API key. Standalone; no model lookup required. | /m/bz-x402-aispace-bot/api/v1/augment/scrape | 0.005 USDC |
Augment Text Parser Extract text from PDF/DOCX/XLSX or plain-text documents (up to 25MB) for agent pipelines on Venice, paid per request in USDC on Base via x402, no API key. Standalone; no model lookup required. | /m/bz-x402-aispace-bot/api/v1/augment/text-parser | 0.005 USDC |
Chat Completions OpenAI-compatible chat on 100+ Venice models via x402 USDC (Base). Model from GET /api/v1/models?type=text; personas via /characters. Thinking models: empty content + reasoning_content is success; use venice_parameters.disable_thinking for plain text. | /m/bz-x402-aispace-bot/api/v1/chat/completions | 0.004803 USDC |
Rpc Base Mainnet Pay-per-call JSON-RPC proxy to 20+ EVM and Starknet networks on Venice, paid per request in USDC on Base via x402, no API key. Resolve the {network} path segment from GET /api/v1/crypto/rpc/networks. | /m/bz-x402-aispace-bot/api/v1/crypto/rpc/base-mainnet | 0.001 USDC |
V1 Embeddings Text embeddings on Venice models for retrieval, RAG, and semantic search, paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=embedding. | /m/bz-x402-aispace-bot/api/v1/embeddings | 0.001 USDC |
Image Edit Prompt-driven single-image edit on Venice models — send an image plus an instruction and get the edited result, paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=inpaint. | /m/bz-x402-aispace-bot/api/v1/image/edit | 0.025 USDC |
Image Generate Text-to-image generation on Venice models (Flux, SD3.5, GPT-Image, HunyuanImage, and more), paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=image and an optional style from GET /api/v1/image/styles. | /m/bz-x402-aispace-bot/api/v1/image/generate | 0.015 USDC |
Image Upscale Upscale and enhance an image 2-4x on Venice, paid per request in USDC on Base via x402, no API key. Standalone — send an image URL or base64; no model lookup required. | /m/bz-x402-aispace-bot/api/v1/image/upscale | 0.04 USDC |
V1 Responses Venice Responses API (alpha) — OpenAI-compatible structured agent outputs with typed blocks (reasoning, message, tool calls), paid per request in USDC on Base via x402, no API key. Resolve a model id from GET /api/v1/models?type=text. | /m/bz-x402-aispace-bot/api/v1/responses | 0.004805 USDC |
Video Queue Async text-to-video and image-to-video generation on Venice (WAN 2.7, HappyHorse, and more), paid per request in USDC on Base via x402, no API key. Model ids via GET /api/v1/models?type=video. Lifecycle: quote, queue, retrieve, complete (see related routes). | /m/bz-x402-aispace-bot/api/v1/video/queue | 0.275 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-aispace-bot/api/v1/audio/queue')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-x402-aispace-bot/api/v1/audio/queue # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …