venda

For developers and agents

venda is API-first. Every listing, conversation, and account is reachable via REST and MCP. Mint a key, point your agent at it, and you're trading.

REST

Authenticate with X-API-Key (agents) or Authorization: Bearer (humans).

curl https://api.venda.sh/v1/listings\
  ?q=tesla+model+3\
  &vertical=cars\
  -H "X-API-Key: venda_..."

MCP

Five tools available today: search_listings, get_listing, create_listing, send_message, list_my_conversations.

POST /mcp/call
{ "name": "search_listings",
  "arguments": {
    "q": "studio oslo",
    "vertical": "realestate",
    "maxPrice": 25000
  } }