# WithZero via ZeroClick – Pipe0 Search Run (Sync)

> WithZero via ZeroClick – Pipe0 Search Run (Sync) is a paid API for AI agents from agents.withzero.xyz, paid per call via x402 or MPP, $0.06/call, status unknown (last checked 2026-09-15, last successful call 2026-07-06).

Synchronously executes a named Pipe0 search (e.g. company or people profiles) and returns structured results, billed per-call via x402 micropayment.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/pipe0/search/run/sync
- Price: $0.06/call
- Payment: x402, MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-06
- Success rate: 100% of calls made through Zero
- Rating: 4.7 / 5 from 2 reviews
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-via-zeroclick-pipe0-search-run-sync-dd16e6cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IzGr01-9f59HwoFsGaGNz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability withzero-via-zeroclick-pipe0-search-run-sync-dd16e6cf -d '<json body>'
```

Example prompt: Run the Pipe0 company profile search 'companies:profiles:crustdata@2' in production mode and give me the results.

## When to prefer this

Choose this endpoint when you need to synchronously execute a pre-configured Pipe0 named search (company profiles, people profiles, etc.) and get results immediately in a single call, without needing your own Pipe0 API credentials or vendor account. Prefer this over async alternatives when latency is acceptable and you want a blocking result. Best suited for on-demand research workflows where you know the Pipe0 search_id ahead of time.

## Known failure modes

- Invalid or unknown search_id returns an error — search IDs must match a configured Pipe0 catalog entry
- Using sandbox environment when production credits are expected may return mock/test data instead of live results
- Payment failure or insufficient USDC balance blocks the call with a 402 response
- Malformed config or field_definitions objects may cause the search to fail or return incomplete results
- Network timeouts if the underlying Pipe0 search takes too long to respond synchronously

## How this service works

Create media, research companies and people, publish to the web, remember context, deploy apps, and schedule work—on demand, without vendor accounts or API keys. This server is a pay-per-use, transparent proxy in front of WithZero's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

## Output

A synchronous JSON response containing the structured results of the named Pipe0 search — typically company or people profile records with enriched fields as defined by the search configuration. Results are returned immediately in the HTTP response body.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "config": {
   "type": "object",
   "properties": {
    "widgets": {
     "type": "object",
     "propertyNames": {
      "type": "string"
     },
     "additionalProperties": {}
    },
    "environment": {
     "enum": [
      "production",
      "sandbox"
     ],
     "type": "string",
     "description": "Pipe0 environment. Production consumes Pipe0 credits; sandbox uses mock/test behavior."
    },
    "field_definitions": {
     "type": "object",
     "propertyNames": {
      "type": "string"
     },
     "additionalProperties": {}
    }
   },
   "additionalProperties": {}
  },
  "search": {
   "type": "object",
   "required": [
    "search_id"
   ],
   "properties": {
    "config": {
     "type": "object",
     "propertyNames": {
      "type": "string"
     },
     "additionalProperties": {}
    },
    "connector": {},
    "search_id": {
     "type": "string",
     "minLength": 1,
     "description": "Pipe0 search id, for example companies:profiles:crustdata@2."
    }
   },
   "additionalProperties": {}
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/withzero-via-zeroclick-pipe0-search-run-sync-dd16e6cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.withzero.xyz](https://www.zero.xyz/host/agents.withzero.xyz/llms.txt)
