// For agent builders

Web data for your agents.
Pay-as-you-go. No signup.

Plug your AI agent into a network of scraping and proxy providers. No accounts to create, no API keys to manage, no credit cards to enter. Your agent's wallet pays. The provider's API responds.

// The friction we removed

No signups. No keys. No top-ups.

person_off

No human signup

No email verification. No "click I agree." Your agent's wallet is the identity. Discovery works the same way every time.

key_off

No keys in .env

No long-lived secrets to manage, rotate, or accidentally commit. Keys are scoped to your wallet, expire with the plan, and re-issue automatically.

paid

No manual top-up

Plan running low? The agent buys the next package automatically — within the budget you set. No human in the loop, no email queue.

// Connect in 5 minutes

Pick your client. Drop in the config.

Claude Desktop · ~/.claude_config.json
{
  "mcpServers": {
    "wiseble": {
      "command": "npx",
      "args": ["@wiseble/mcp-client"],
      "env": {
        "WISEBLE_WALLET_PROVIDER": "coinbase-cdp"
      }
    }
  }
}
Cursor · settings.json
{
  "mcp.servers": {
    "wiseble": {
      "transport": "http",
      "url": "https://mcp.wiseble.ai",
      "wallet": "coinbase-cdp"
    }
  }
}
OpenAI Agents SDK · agent.py
from openai_agents import Agent
from wiseble import tools

agent = Agent(
  model="gpt-4o",
  tools=tools.discover(
    wallet=CoinbaseWallet(),
    budget="5.00 USDC"
  )
)
Plain fetch · with x402-aware client
import { x402Fetch } from '@coinbase/x402'

const res = await x402Fetch(
  'https://api.scraperapi.com/v1/scrape',
  {
    wallet: myWallet,
    maxBudget: '0.50 USDC',
    body: JSON.stringify({ url: 'https://...' })
  }
)

// How payment works for your agent

Six steps. One signed transaction.

  1. 01

    Tool discovery

    Your agent discovers scraperapi.purchase_freelancer_plan through MCP.

  2. 02

    402 Payment Required

    The tool returns price ($49 USDC) and the provider's wallet address.

  3. 03

    Wallet signs & submits

    Your agent's wallet signs the payment and submits it on Base.

  4. 04

    Provider issues key

    A real API key, scoped to your wallet, valid for the plan duration.

  5. 05

    Use the API normally

    Subsequent calls use the issued key. The provider sees a normal customer.

  6. 06

    Auto top-up

    When the plan runs out, the agent calls top_up_package within budget — no human in the loop.

// Wallet options

Bring your wallet.

Coinbase CDP

Server-managed wallets, programmatic signing, audit trail. Best for production agents.

Crossmint

Smart wallets with policy controls, spending limits, multi-sig. Best for shared agent infra.

Privy

Email-recoverable embedded wallets. Best for consumer-facing agent products.

// Available providers

Catalog launching with our first partners.

We're onboarding launch partners through 2026. Each new provider becomes discoverable across MCP, OpenAPI, and an x402 agent card simultaneously.

Are you a provider? See the integration guide →

Build agents that buy what they need.

No keys to manage. No top-ups to schedule. No vendors to negotiate with. Your agent. Your wallet. Your budget.