# AinX402 VC Funds Directory

> AinX402 VC Funds Directory is a paid API for AI agents from ainalyst-api.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a complete list of all venture capital funds with their investment data including focus areas, location, funding totals, and investment counts

## Facts

- Endpoint: GET https://ainalyst-api.xyz/all-funds
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ainx402-vc-funds-directory-e1c911a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zUCIVdD30aXDyTqyduULs

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 ainx402-vc-funds-directory-e1c911a6
```

Example prompt: Pull up the full list of VC funds from AinX402's knowledge hub — I want to see all of them with their focus areas, locations, founding years, and total investment counts.

## When to prefer this

Use this endpoint when you need a comprehensive, unfiltered directory of all VC funds in the AinX402 knowledge hub, especially when building analyses, comparisons, or enrichment pipelines that require the full universe of tracked funds rather than a filtered subset.

## Known failure modes

- Payment not provided or insufficient — HTTP 402 returned requiring 0.01 USDC via x402 protocol
- Service unavailable or internal error — HTTP 500 with no fund data returned
- Empty or stale dataset if the knowledge hub has not been recently updated
- Network timeout if the full fund list is large

## How this service works

List all VC funds with their investment data

## Output

An array of VC fund objects each containing id, name, website, location, an array of focus areas, founding year, total funding amount, and number of investments made — plus a timestamp and total fund count.

## Response schema (JSON Schema)

```json
{
 "type": "http",
 "properties": {
  "funds": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "id": {
      "type": "number"
     },
     "name": {
      "type": "string"
     },
     "website": {
      "type": "string"
     },
     "location": {
      "type": "string"
     },
     "focus_areas": {
      "type": "array",
      "items": {
       "type": "string"
      }
     },
     "founding_year": {
      "type": "number"
     },
     "total_funding": {
      "type": "number"
     },
     "number_of_investments": {
      "type": "number"
     }
    }
   }
  },
  "timestamp": {
   "type": "string"
  },
  "total_funds": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ainx402-vc-funds-directory-e1c911a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ainalyst-api.xyz](https://www.zero.xyz/host/ainalyst-api.xyz/llms.txt)
