# Orthogonal Company Enrichment

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

Asynchronously enriches a company profile given an email, phone number, or social media URL as a seed identifier.

## Facts

- Endpoint: POST https://x402.orthogonal.com/nyne/company/enrichment
- Price: $0.076/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-85ecce02
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nt1PgfIZiZbM83woqQ80J

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-85ecce02 -d '<json body>'
```

Example prompt: Can you look up the company behind this email address — john.smith@acmecorp.io — and get me their industry, size, and any social media profiles you can find?

## When to prefer this

Choose this endpoint when you need to enrich a company profile asynchronously starting from a lightweight seed identifier such as an email address, phone number, or social media URL. It is ideal for B2B lead enrichment pipelines, sales prospecting tools, or CRM augmentation workflows where you have contact-level data but need firmographic context. Prefer this over person-level enrichment endpoints when the target entity is a company rather than an individual.

## Known failure modes

- No matching company found for the provided identifier — returns empty or null company record
- Invalid or malformed email/phone/URL input — returns validation error
- Enrichment job times out for obscure or private companies — partial results returned
- Rate limiting or payment failure via x402 protocol — request rejected
- Social media URL from unsupported platform — may return limited data

## How this service works

Start async company enrichment. Requires at least one of: email, phone, or social_media_url.

## Output

Returns an async enrichment job result containing structured company data including company name, industry vertical, employee count, website, description, and associated social media profiles, derived from the provided seed identifier (email, phone, or social URL).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "email": {
       "type": "string",
       "description": "Company email address to enrich"
      },
      "phone": {
       "type": "string",
       "description": "Company phone number to enrich"
      },
      "callback_url": {
       "type": "string",
       "description": "HTTPS endpoint for automatic delivery"
      },
      "social_media_url": {
       "type": "string",
       "description": "LinkedIn company profile URL"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-company-enrichment-85ecce02/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)
