# WithZero Company Identity Lookup via ZeroClick

> WithZero Company Identity Lookup via ZeroClick is a paid API for AI agents from agents.withzero.xyz, paid per call via x402 or MPP, $0.01/call, status healthy (last checked 2026-09-14, last successful call 2026-08-27).

Resolves a company name to its verified identity data using WithZero's company:identity service, billed per call via ZeroClick.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/pipe0/company/identity
- Price: $0.01/call
- Payment: x402, MPP
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-08-27
- Success rate: 100% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/withzero-company-identity-lookup-via-zeroclick-07161f59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GdhmZxpzUFWl1DKWeOeTx

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-company-identity-lookup-via-zeroclick-07161f59 -d '<json body>'
```

Example prompt: Look up the verified identity for the company 'Stripe' using WithZero — I want their canonical company profile.

## When to prefer this

Use this endpoint when you need to resolve a single company name to its verified, canonical identity record without managing your own vendor accounts or API keys. It is ideal for agent workflows that need on-demand, pay-per-use company identity enrichment billed transparently in USDC. Prefer this over manual web searches when structured, machine-readable company identity data is required.

## Known failure modes

- Company name not found or unrecognizable — returns empty or null identity record
- Payment failure via ZeroClick — 402 response if funds are insufficient
- Invalid input: more than one company name submitted (maxItems: 1)
- Sandbox vs production environment mismatch producing test data instead of live data
- Rate limiting or service unavailability from the underlying WithZero API

## 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

A structured company identity record for the queried company name, including verified profile details resolved through WithZero's company:identity service (version 3). The response reflects canonical identity data such as official name, description, and related identifiers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "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."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/withzero-company-identity-lookup-via-zeroclick-07161f59/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)
