# Orthogonal Company Funders Retrieval

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

Asynchronously retrieves a list of investors and funders associated with a specified company.

## Facts

- Endpoint: POST https://x402.orthogonal.com/nyne/company/funders
- Price: $1.44/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-company-funders-retrieval-6dceaa89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xR94wks5EdSh_geuRL6hB

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-funders-retrieval-6dceaa89 -d '<json body>'
```

Example prompt: Can you pull up the list of investors and funders associated with Stripe so I can see who has backed them?

## When to prefer this

Choose this endpoint when you need to programmatically discover the investor and funder base of a specific company, especially for due diligence, competitive research, or building investment graphs. Best suited for batch or background workflows where async retrieval is acceptable. Prefer over manual research when you need structured, machine-readable investor data at scale.

## Known failure modes

- Company not found or unrecognized — returns empty or error result
- Async job fails or times out before completion
- Ambiguous company name matching multiple entities
- Rate limiting or payment verification failure at $1.44 USDC per call
- Incomplete funder data for lesser-known companies

## How this service works

Start async retrieval of investors and funders associated with a company.

## Output

An asynchronous job response containing a request or job ID that can be polled later to retrieve the full list of investors and funders associated with the specified company, including funder names and potentially funding round details.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "company_name": {
       "type": "string",
       "description": "Investor name (e.g., Y Combinator, Sequoia Capital, Andreessen Horowitz)"
      },
      "company_domain": {
       "type": "string",
       "description": "Investor domain (e.g., ycombinator.com, sequoiacap.com, a16z.com)"
      },
      "callback_url": {
       "type": "string",
       "description": "HTTPS endpoint for automatic delivery"
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-company-funders-retrieval-6dceaa89/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)
