# Pipe0 Pricing Rates

> Pipe0 Pricing Rates is a paid API for AI agents from pipe0.withzero.xyz, paid per call via MPP, price unknown, status unknown (last checked 2026-09-15, last successful call 2026-07-29).

Returns the current Pipe0 pricing plan details including credit costs, USDC rates, and supported operation limits

## Facts

- Endpoint: GET https://pipe0.withzero.xyz/api/v1/rates
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-29
- Success rate: 100% of calls made through Zero
- Activations on Zero: 3
- Provider: pipe0.withzero.xyz
- Website: https://pipe0.withzero.xyz
- Canonical page: https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-pricing-rates-3c8f7274
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bKjwQAh_zqhKn1_NZQf_u

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 pipe0-withzero-xyz-pipe0-pricing-rates-3c8f7274
```

Example prompt: What's the current Pipe0 pricing — how many USDC micros per credit, what credit costs apply per pipe record and per search result, and what are the max input records and search results allowed?

## When to prefer this

Use this endpoint before invoking any other Pipe0 operation to understand current cost structure, credit consumption rates, and operational limits — especially when building cost-estimation logic or validating that a planned workflow fits within plan constraints.

## Known failure modes

- Service unavailable returns 5xx error
- Network timeout if pipe0.withzero.xyz is unreachable
- Unexpected response shape if pricing version has changed

## How this service works

Show Pipe0 at-cost pricing basis, supported allowlisted pipe/search IDs, hard caps, and the current plan credit unit. Free discovery route.

## Output

Returns a JSON object with pricingVersion, plan USDC micro amount, plan credit label, unit USDC micro per Pipe0 credit, a map of credit costs per record for supported pipe operations, a map of credit costs per result for supported search operations, maximum pipe input records, maximum raw pipes, and maximum search results allowed under the active plan.

## Example request

```json
{
 "environment": "sandbox",
 "company_website_urls": [
  "https://www.example.com"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "pricingVersion",
  "planUsdcMicro",
  "planCredits",
  "unitUsdcMicroPerPipe0Credit",
  "supportedPipeCreditsPerRecord",
  "supportedSearchCreditsPerPage",
  "maxPipeInputRecords",
  "maxRawPipes",
  "maxSearchResults"
 ],
 "properties": {
  "maxRawPipes": {
   "type": "number"
  },
  "planCredits": {
   "type": "string"
  },
  "planUsdcMicro": {
   "type": "string"
  },
  "pricingVersion": {
   "type": "number"
  },
  "maxSearchResults": {
   "type": "number"
  },
  "maxPipeInputRecords": {
   "type": "number"
  },
  "unitUsdcMicroPerPipe0Credit": {
   "type": "string"
  },
  "supportedPipeCreditsPerRecord": {
   "type": "object",
   "propertyNames": {
    "type": "string"
   },
   "additionalProperties": {
    "type": "number"
   }
  },
  "supportedSearchCreditsPerPage": {
   "type": "object",
   "propertyNames": {
    "type": "string"
   },
   "additionalProperties": {
    "type": "number"
   }
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-pricing-rates-3c8f7274/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pipe0.withzero.xyz](https://www.zero.xyz/host/pipe0.withzero.xyz/llms.txt)
