# Orthogonal Investor Search

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

Search for investor records by fuzzy name match, domain, LinkedIn, or Crunchbase URL to retrieve a canonical investor ID

## Facts

- Endpoint: GET https://x402.orthogonal.com/fundable/investor/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-investor-search-95c6639e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_If1uuBnltWGfL8lRFXyUL

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-investor-search-95c6639e
```

Example prompt: Can you find the investor ID for Sequoia Capital? Try searching by name 'Sequoia Capital' or their domain 'sequoiacap.com'.

## When to prefer this

Use this endpoint when you need to resolve an investor's canonical ID from partial or varied identifiers — especially when you have a name, domain, LinkedIn, or Crunchbase URL and need a consistent ID to use in downstream API calls on the Orthogonal platform. Prefer this over manual lookup when the exact investor name is uncertain and fuzzy matching is needed.

## Known failure modes

- No investor found matching the provided name, domain, or URL — returns empty or null result
- Fuzzy name match returns multiple ambiguous results requiring disambiguation
- Invalid LinkedIn or Crunchbase URL format causes a 400 or validation error
- Rate limiting or payment failure (402) if USDC balance is insufficient
- Domain provided does not match any known investor record

## How this service works

Search for an investor id using fuzzy match or other identifiers

## Output

Returns a canonical investor ID and associated investor record data that can be used to look up further details about that investor or fund within the Orthogonal platform.

## 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": {
      "name": {
       "type": "string",
       "description": "Fuzzy search by investor name"
      },
      "domain": {
       "type": "string",
       "description": "Exact match by investor domain"
      },
      "linkedin": {
       "type": "string",
       "description": "Match by LinkedIn company URL"
      },
      "crunchbase": {
       "type": "string",
       "description": "Match by Crunchbase organization URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-investor-search-95c6639e/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)
