# Pipe0 Company Identity Resolver

> Pipe0 Company Identity Resolver is a paid API for AI agents from pipe0.withzero.xyz, paid per call via MPP, $0.01/call, status unknown (last checked 2026-09-15).

Resolves company names to structured identity records via Pipe0's company:identity@2 workflow, returning raw Pipe0 data plus at-cost billing metadata.

## Facts

- Endpoint: POST https://pipe0.withzero.xyz/api/v1/company/identity
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 3
- Provider: pipe0.withzero.xyz
- Website: https://pipe0.withzero.xyz
- Canonical page: https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-company-identity-resolver-4b829824
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iZ-lWsGLTz8ZPuuKXHyc9

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-company-identity-resolver-4b829824 -d '<json body>'
```

Example prompt: Can you resolve these company names — 'Stripe', 'Databricks', and 'Notion' — through Pipe0's company identity lookup in production mode so I can get their canonical identity records before enriching them further?

## When to prefer this

Choose this endpoint when you need a fast, lightweight first step to resolve company names to canonical Pipe0 identity records before running heavier Crustdata enrichment workflows. Ideal as a fallback or corroboration layer when you already have company names but not URLs or structured identifiers. Prefer this over company:overview enrichment when you only need identity resolution, not full company overviews.

## Known failure modes

- Empty or invalid company_names array (minItems:1 violated) returns validation error
- More than 25 company names provided (maxItems:25 exceeded) returns 400
- Company name not found in Pipe0 returns empty or null record in data
- Invalid environment enum value causes request rejection
- Insufficient Pipe0 credits or billing failure causes 402 or service error
- Sandbox environment may return mock or limited data

## How this service works

Resolve one company name through Pipe0 company:identity@3. At-cost fixed cap: max($0.01, 0.30 Pipe0 credits × $999/34,000 credits). Useful as a lightweight first step, fallback, or corroboration step before Crustdata enrichment workflows.

## Output

Returns a JSON object with a 'data' field containing the raw Pipe0 company:identity@2 response (structured identity records for each resolved company) and a 'billing' object detailing Pipe0 credits consumed, max credits, plan USDC cost in micros, pricing version, and the settled USDC micro amount for the call.

## Example request

```json
{
 "environment": "sandbox",
 "company_names": [
  "Acme Corporation"
 ]
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "company_names": [
   "OpenAI"
  ]
 },
 "required": [
  "company_names"
 ],
 "properties": {
  "environment": {
   "enum": [
    "production",
    "sandbox"
   ],
   "type": "string"
  },
  "company_names": {
   "type": "array",
   "items": {
    "type": "string",
    "minLength": 1
   },
   "maxItems": 1,
   "minItems": 1,
   "description": "Company names to resolve through company:identity@3."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "data",
  "billing"
 ],
 "properties": {
  "data": {
   "description": "Raw JSON response returned by Pipe0."
  },
  "billing": {
   "type": "object",
   "required": [
    "pipe0Credits",
    "maxPipe0Credits",
    "planUsdcMicro",
    "planCredits",
    "pricingVersion",
    "settledUsdcMicro"
   ],
   "properties": {
    "planCredits": {
     "type": "string"
    },
    "pipe0Credits": {
     "type": "number"
    },
    "planUsdcMicro": {
     "type": "string"
    },
    "pricingVersion": {
     "type": "number"
    },
    "maxPipe0Credits": {
     "type": "number"
    },
    "settledUsdcMicro": {
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pipe0-withzero-xyz-pipe0-company-identity-resolver-4b829824/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)
