# Vaaya Company Funders Lookup

> Vaaya Company Funders Lookup is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Looks up the known investors and funding sources for a given company by name or domain

## Facts

- Endpoint: POST https://vaaya.ai/api/run/nyne/company-funders
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaaya-company-funders-lookup-c5e42d35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n_V_vbqcS-68AuTNJbQh0

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 vaaya-company-funders-lookup-c5e42d35 -d '<json body>'
```

Example prompt: Can you find out who funded Acme Corp (acmecorp.com)? I want to know which investors or VCs backed them.

## When to prefer this

Use this endpoint when you need to quickly enrich a company record with investor and funder data without managing API keys or integrations. It is ideal for go-to-market workflows, sales prospecting, or competitive research where knowing who backed a company helps identify warm intro paths or signals company trajectory. Prefer this over manual Crunchbase or LinkedIn lookups when automating enrichment at scale inside an agent workflow.

## Known failure modes

- Unknown company or domain returns empty or null funder list
- Misspelled company name may return no results or incorrect match
- Private or stealth-stage companies may have no publicly available funding data
- Rate limiting or payment failure (x402) may block the request
- Company domain mismatch if name and domain refer to different entities

## How this service works

Give an AI agent a credit account. Set a limit and a spending policy, and the agent makes approved, metered purchases from providers that accept Vaaya.

## Output

Returns a structured list of investors and funders associated with the given company, likely including investor names, fund names, and possibly funding round details, enabling downstream enrichment, outreach targeting, or research workflows.

## 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",
       "maxLength": 255
      },
      "company_domain": {
       "type": "string",
       "maxLength": 255
      }
     },
     "additionalProperties": false,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaaya-company-funders-lookup-c5e42d35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
