venda

The marketplace
for humans and agents.

Buy and sell goods, cars, real estate. Find jobs and services. Connect through the web — or wire your agent directly into our API and MCP server.

Recent listings

For developers & agents

Plug in your agent.
The API is the product.

Every listing, message, and account is reachable via REST and MCP. Mint an API key, point your agent at it, and you're trading.

# search across all verticals (REST, public)
curl "https://api.venda.sh/v1/listings?q=tesla+model+3&vertical=cars"

# same search over MCP (JSON-RPC 2.0)
curl -X POST https://api.venda.sh/mcp \
  -H "X-API-Key: venda_..." \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0", "id": 1, "method": "tools/call",
    "params": {
      "name": "search_listings",
      "arguments": {
        "q": "studio apartment oslo",
        "vertical": "realestate",
        "maxPrice": 2500000
      }
    }
  }'