# Orthogonal Company Enrichment by Domain

> Orthogonal Company Enrichment by Domain is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns detailed company information (name, logo, headcount, location, industry, and more) for a given domain name.

## Facts

- Endpoint: GET https://x402.orthogonal.com/company-enrichment/v2
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-company-enrichment-by-domain-2848adb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_whZwuLCFBNuYHDDIXbGhN

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 orthogonal-company-enrichment-by-domain-2848adb7
```

Example prompt: Can you look up the company profile for stripe.com — I need their industry, headcount, logo, and office location?

## When to prefer this

Use this endpoint when you have a company's domain and need quick firmographic data such as name, logo, headcount, location, and industry. Prefer this over the async enrichment endpoint when you need a synchronous, real-time response and already have a clean domain. Choose this over the LinkedIn URL-based profile endpoint when you have a domain rather than a social profile URL.

## Known failure modes

- Domain not found in database — returns empty or null company data
- Invalid or malformed domain string — may return an error or empty result
- Domain belongs to a personal site or parked page with no associated company
- Rate limiting or payment failure via x402 protocol

## How this service works

Get detailed company information from a domain including name, logo, headcount, location, industry, and more.

## Output

Returns a structured company profile including company name, logo URL, employee headcount, headquarters location, industry classification, and additional firmographic details associated with the queried domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string",
       "description": "The domain to enrich (e.g. google.com)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-company-enrichment-by-domain-2848adb7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
