# Orthogonal Company Enrichment by Name or Social URL

> Orthogonal Company Enrichment by Name or Social URL 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).

Enriches a company profile using its name or social media URL (LinkedIn, Twitter, etc.), returning detailed firmographic data.

## Facts

- Endpoint: GET https://x402.orthogonal.com/company-enrich/companies/enrich
- 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-enrichment-by-name-or-social-url-8a4fb152
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y4EsIwek3-JguPkTmYxhd

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-name-or-social-url-8a4fb152
```

Example prompt: Can you pull up company details for Stripe using their LinkedIn URL https://www.linkedin.com/company/stripe — I need their industry, size, and description?

## When to prefer this

Use this endpoint when you have a company name or social media URL (LinkedIn, Twitter) but not a website domain. If you have a domain, use the domain-based enrichment endpoint instead. This is ideal for enriching B2B leads sourced from social platforms or when only a company name is available.

## Known failure modes

- No matching company found for the given name or social URL — returns empty or null result
- Ambiguous company name matches multiple companies — may return incorrect or low-confidence result
- Social URL format not recognized or unsupported platform — returns error
- Rate limit or payment failure — returns 402 or 429 error
- Domain accidentally passed instead of name/social URL — endpoint does not accept domain parameter (use GET /companies/enrich?domain= instead)

## How this service works

Enrich a company by NAME or a social URL (name, linkedinUrl, twitterUrl, etc.). At least one field is required. This variant does NOT accept a domain — to enrich by website domain use GET /companies/enrich?domain=example.com instead.

## Output

Returns a structured company profile including firmographic fields such as company name, description, industry, employee count, headquarters location, website, and optionally workforce breakdown data when the expand=workforce parameter is included.

## 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": "Company website domain to enrich, e.g. \"stripe.com\" — bare host only, no protocol or path. This GET form enriches a single company by its domain. To enrich by company name or a social URL instead, use POST /companies/enrich."
      },
      "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-enrichment-by-name-or-social-url-8a4fb152/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)
