# DataVault Company Lookup

> DataVault Company Lookup is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Looks up company/business information by domain name, returning structured company data

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/company
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-company-lookup-6ffd2958
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TUEVNiQTnQTcO9el1AhWV

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 datavault-company-lookup-6ffd2958 -d '<json body>'
```

Example prompt: Can you look up the company info for stripe.com and tell me what you find about the business?

## When to prefer this

Use this endpoint when you need to enrich a company profile or gather business intelligence starting from a domain name. Prefer this over general web search when you need structured, machine-readable company data returned in a consistent schema format. Best for B2B data enrichment workflows at $0.05 per call.

## Known failure modes

- Domain not found in database — returns success: false or empty data object
- Invalid domain format — may return error or empty response
- Domain exists but no company data available — returns partial or empty data
- Network timeout or service unavailability

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

A structured object containing company data fields (e.g. name, description, industry, location, employee count, etc.) associated with the given domain, along with a success boolean indicating whether the lookup was successful.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-company-lookup-6ffd2958/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
