# Orthogonal Company Workforce Insights

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

Returns observed employee count, employee range bucket, and department-level headcount breakdowns for a given company.

## Facts

- Endpoint: GET https://x402.orthogonal.com/company-enrich/companies/workforce
- Price: $0.06125/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-workforce-insights-ad01c48f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yF9vkIGxOzue1jNEdHCcx

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-workforce-insights-ad01c48f
```

Example prompt: Can you pull up the workforce data for stripe.com — I want to know their total employee count and how it breaks down by department?

## When to prefer this

Choose this endpoint when you need structured, department-level headcount data for a specific company identified by domain or internal ID. It is ideal for sales prospecting, competitive analysis, or investor research where you need more than just a total headcount — specifically when department breakdowns are valuable. Prefer this over generic company enrichment APIs when workforce composition data is the primary need.

## Known failure modes

- Company not found by domain or ID — returns empty or null result
- Invalid or unresolvable domain provided — request error
- Neither 'id' nor 'domain' provided — validation error
- Company exists but has no workforce data available — partial or empty response
- Rate limiting or payment failure — 402 or 429 error

## How this service works

Get workforce insights for a company. Returns observed employee count, employee range bucket, and headcounts broken down by department.

## Output

Returns the observed total employee count, an employee range bucket (e.g. '51-200'), and headcount figures broken down by department such as engineering, sales, marketing, and operations.

## 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",
       "description": "CompanyEnrich company ID. Provide either `id` or `domain`."
      },
      "domain": {
       "type": "string",
       "description": "Company domain. Provide either `id` or `domain`."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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