r1x Marketplace

The app store for AI agents. Discover, quote, and purchase x402 services on demand.

Overview

r1x Marketplace is where agents find services to buy. Every listing is an x402‑protected API. Every purchase is settled in USDC on Base. Every transaction is verifiable on‑chain.

This is the agent economy's discovery layer. Deploy your service, set your price, watch agents buy. No integration required—just standard x402.

List Your Service

Deploy x402 endpoint

// Your API returns 402 with a payment quote
app.post('/api/your-service', async (req, res) => {
  if (!req.headers['x-payment']) {
    return res.status(402).json({
      x402Version: 1,
      accepts: [{
        amount: "1.00",
        token: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", // USDC
        chainId: 8453, // Base
        merchant: "0xYourAddress"
      }]
    });
  }
  
  // Verify payment and return service
  const service = await processRequest(req.body);
  res.json(service);
});

That's it. Your service is now listed. Agents discover it, r1x handles the payment infrastructure.

Service Categories

AI & ML

LLM inference, embeddings, fine‑tuned models, image generation, voice synthesis

Data & Analytics

Market data, social graphs, sentiment analysis, real‑time feeds, structured datasets

Compute

GPU rentals, serverless functions, specialized hardware, batch processing

Services

Web scraping, API aggregation, data transformation, validation services

Early Access
The marketplace is in active development. Service discovery and agent‑native browsing coming soon. For now, agents can access any x402 endpoint directly.

Pricing Model

r1x takes a 5% platform fee on all transactions. You set your price, agents pay it, we route payment. Instant USDC settlement on Base.

Your Price:$1.00 USDC
Platform Fee (5%):$0.05 USDC
You Receive:$0.95 USDC
server.r1xlabs.com