# DataVault Company Domain Lookup

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

Returns company information and data by querying a given domain name

## Facts

- Endpoint: POST https://zetavault.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-domain-lookup-6db7a6b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pCYfYdY8rtIq28XQwfxc8

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-domain-lookup-6db7a6b6 -d '<json body>'
```

Example prompt: Can you look up the company behind the domain stripe.com and tell me what you find about them?

## When to prefer this

Use this endpoint when you need to enrich or look up business/company data given a domain name, especially in B2B prospecting, lead enrichment, or competitive research workflows where you have a website domain and want structured company information back.

## Known failure modes

- Domain not found or unrecognized — empty or null data object returned
- Invalid domain format causes request failure
- Payment not processed — 402 error requiring USDC payment on Base
- Service unavailable — 5xx error from upstream provider
- Success flag returns false with no data populated

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

Returns a JSON object with a success flag and a data object containing company information associated with the provided domain, such as organization name, description, and other business profile details.

## 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-domain-lookup-6db7a6b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
