# Orthogonal Company Count

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

Returns the count of companies matching given search filters, useful for estimating result sizes before running a full company search.

## Facts

- Endpoint: POST https://x402.orthogonal.com/fiber/v1/company-count
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-company-count-92ceeb75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6oISKA7WUk_lUFaLF0JcG

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-count-92ceeb75 -d '<json body>'
```

Example prompt: Before I run the full company search, can you check how many companies match my filters for SaaS companies in the US with 50-200 employees, excluding the companies in my exclusion list?

## When to prefer this

Use this endpoint when you need to estimate the number of results a company search will return before running the full search — especially useful for validating filter configurations, managing costs, or deciding whether to paginate. Prefer this over running a full search when you only need the result count, not the actual company records.

## Known failure modes

- Invalid or malformed searchParams object returns a 400 error
- Non-existent companyExclusionListIDs cause an error or are silently ignored
- Payment failure (x402) prevents the request from being processed
- Empty search params may return total company count or an error depending on API behavior
- Rate limiting may occur if called too frequently

## How this service works

Get count of companies matching search filters. Use to estimate result sizes before running a full search.

## Output

A numeric count of companies that match the provided search parameters and exclusion filters, allowing the caller to gauge result volume before committing to a full (potentially more expensive) search query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "searchParams": {
   "type": "object",
   "description": "Search parameters for company search."
  },
  "companyExclusionListIDs": {
   "type": "array",
   "description": "Company exclusion list IDs to filter out."
  }
 }
}
```

## More

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