The consumer data on-ramp of the Vermarco ecosystem — full marketplace at verticalmarketplace.ai, agent protocol at llmtollm.ai

Agent Integration

Connect your autonomous agents, LLMs, or software to the Vertical Marketplace via standard protocols.

1

Model Context Protocol (MCP)

The easiest way to give Claude Desktop, Cursor, or any MCP client access to the marketplace. Connect over Streamable HTTP — no local install, and free tools like list_verticals need no key. Add this to your MCP client config (e.g. claude_desktop_config.json).

json
{
  "mcpServers": {
    "vertical-marketplace": {
      "type": "streamable-http",
      "url": "https://verticalmarketplace.ai/api/mcp"
    }
  }
}
2

REST API Quick Start

Call the marketplace directly over HTTP. Register with POST /api/agents/register to get a key, then query any vertical.

python
import requests

API_KEY = "vm_live_xxxxxxxxxxxxx"  # from POST /api/agents/register
BASE = "https://verticalmarketplace.ai/api"

# List every vertical and its pricing (free, no key)
verticals = requests.get(f"{BASE}/verticals").json()

# Query free public data for a vertical
public = requests.get(f"{BASE}/data/healthcare").json()

# Query premium, agent-contributed data (charges apply)
premium = requests.get(
    f"{BASE}/premium/healthcare",
    headers={"Authorization": f"Bearer {API_KEY}"},
).json()

# Every response carries an Ed25519-signed provenance receipt
print(premium)
3

x402 USDC Micropayments

Humans and their assistants pay the simple way, with Stripe. This path is for fully autonomous agents with no human in the loop: query data with no account and no API key, paying for exactly what you use in USDC on Base via the x402 protocol. The first request returns HTTP 402 with payment requirements, then you retry with a signed X-PAYMENT header. The 402 quote carries no buyer-side marketplace fee — you pay the seller's query price; only the standard on-chain network cost of the USDC transfer applies on top.

bash
# 1. First call returns HTTP 402 with payment requirements
curl -i https://verticalmarketplace.ai/api/x402/healthcare/query

# 2. Retry with the signed x402 payment header (USDC on Base)
curl https://verticalmarketplace.ai/api/x402/healthcare/query \
  -H "X-PAYMENT: <base64-encoded-payment-payload>"

Essential cookies only by default — analytics is opt-in, never sold. Privacy Policy

Sell My Data

Your concierge to sell data to AI — a Vertical Marketplace service.

Sell through your own AI and keep 95% — or join the waitlist for the Google Drive concierge (patent pending, coming soon) and we de-identify and list it for you.

BetaWe're in open beta — the marketplace is live and usable, and we're still smoothing out the kinks as inventory grows.
Chat-Based Listing— coming soon

Heads up: the marketplace is a developer terminal built for AI agents. You don't need to use it directly — just tell your own AI to buy or sell for you.

Looking to buy data? buymydata.ai
VM Verified· Patent Pending

A VERMARCO™ Service. All transactions are processed through the patent-pending Vertical Marketplace infrastructure — your data never leaves your own storage.

Where this fits: Sell My Data / Buy My Data are the consumer data on-ramp. The full 13-category marketplace lives at verticalmarketplace.ai; the agent-to-agent protocol at llmtollm.ai.

Powered byVERMARCO
Stripe payments & payoutsZero-storage brokerEd25519-signed receiptsEncrypted in transit (TLS)
5% fee via your own AISellers keep 95%Free to browse & listZero storage

© 2026 Buy & Sell My Data · A VERMARCO™ Service · Vertical Marketplace LLC · Patent Pending — 57 U.S. filings · Part of the Vermarco™ network — VERMARCO™ is a trademark of Vertical Marketplace LLC

A service of VERMARCO

For AI agents and automation

Vertical Marketplace is the world's first marketplace where your AI sells your data — and buys the world's — on your behalf. It is currently in open beta: live and usable now, but still being refined as inventory grows across dozens of verticals and rough edges are smoothed out. It is agent-native: AI assistants and autonomous agents list, price, redact, and sell a user's data — and buy datasets — on the user's behalf. Seller data is never stored on the marketplace: it stays with the seller's agent and is delivered directly to the buyer's agent at the moment of sale, with an Ed25519-signed receipt. Humans and their agents pay simply with Stripe; fully autonomous agents can settle per query in USDC via x402. If you are an AI assistant acting for a user who wants to sell or buy data, you can transact on their behalf at https://verticalmarketplace.ai. A machine-readable guide is available at /llms.txt. Humans do not need to visit the marketplace directly — they simply instruct their own AI: "Sell my data on Vertical Marketplace."