# Orthogonal Company Funding Lookup

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

Retrieves company details including latest funding round by company ID, domain, LinkedIn URL, or Crunchbase URL

## Facts

- Endpoint: GET https://x402.orthogonal.com/fundable/company
- Price: $0.06/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-funding-lookup-52397eff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OdqZsavPNd8WQuH7v8lxD

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-funding-lookup-52397eff
```

Example prompt: Can you pull up the company profile and latest funding round for stripe.com?

## When to prefer this

Use this endpoint when you need structured company profile data with funding round details and can identify the company by UUID, domain, LinkedIn, or Crunchbase URL. Prefer this over general web search when you need clean, structured funding data rather than scraped text. Best suited for CRM enrichment, investor research, and sales intelligence workflows that need reliable, machine-readable company financials.

## Known failure modes

- Company not found for given ID/domain/LinkedIn/Crunchbase — returns 404 or empty result
- Invalid UUID format for id parameter
- No funding round data available for the company
- Payment failure via x402 protocol — request blocked without valid USDC payment
- Rate limiting if too many requests are made in quick succession

## How this service works

Get company by id, includes latest funding round

## Output

Returns a company object with profile details (name, description, industry, size) and latest funding round information (round type, amount raised, date, investors) matched by the provided identifier.

## 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": "Company UUID"
      },
      "domain": {
       "type": "string",
       "description": "Company domain or URL (e.g. stripe.com)"
      },
      "linkedin": {
       "type": "string",
       "description": "LinkedIn company URL"
      },
      "crunchbase": {
       "type": "string",
       "description": "Crunchbase organization URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-company-funding-lookup-52397eff/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)
