# Orthogonal Company Enrich – Get Company Profile by ID

> Orthogonal Company Enrich – Get Company Profile by ID is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01225/call, status unknown (last checked 2026-09-13).

Fetches a full company profile (name, domain, industry, headcount, revenue, location, funding, social links, and more) given a CompanyEnrich ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/company-enrich/companies
- Price: $0.01225/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-company-enrich-get-company-profile-by-id-a585219e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7xpBliuSfD4dRCx69lJ6f

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-enrich-get-company-profile-by-id-a585219e
```

Example prompt: Pull the full company profile for CompanyEnrich ID 'comp_abc123' — I need their industry, employee count, revenue, location, and funding history, and also expand the workforce data.

## When to prefer this

Choose this endpoint when you already have a CompanyEnrich ID and need a comprehensive, structured firmographic profile in a single call. It is ideal for CRM enrichment pipelines, sales intelligence workflows, and due diligence research where structured fields like headcount, revenue, funding, and location are required. Prefer this over search-based endpoints when the company identity is already resolved.

## Known failure modes

- Invalid or missing CompanyEnrich ID returns a 404 or error response
- Malformed query parameters (e.g. unsupported expand values) may return a 400 error
- Insufficient USDC balance causes payment failure via x402 protocol
- Workforce expansion requested but not available for the specific company returns partial data
- Rate limiting or throttling may occur under heavy usage

## How this service works

Get a company's full profile by its CompanyEnrich ID. Returns name, domain, industry, employee count, revenue, location, funding, social links, and more.

## Output

Returns a structured CompanyInfo object containing the company's canonical name, website domain, industry classification, employee count, estimated revenue, headquarters location, funding rounds and amounts, social media profile URLs, and optionally an expanded workforce breakdown if requested.

## 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": {
      "id": {
       "type": "string"
      },
      "expand": {
       "type": "array",
       "description": "Expandable response fields. Repeat the parameter to request multiple expansions.\n\nSupported values:\n- `workforce`: costs 5 credits per company and adds the `workforce` field to `CompanyInfo`."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-company-enrich-get-company-profile-by-id-a585219e/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)
