# Aviato Company Investment Funds Lookup

> Aviato Company Investment Funds Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Retrieves individual investment funds that a specific company has invested in (e.g., Sequoia's Growth Fund), with pagination support.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/company/investments/funds
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aviato-company-investment-funds-lookup-f466014c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G4BiYhAbHwdwTJZx-nPs5

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 aviato-company-investment-funds-lookup-f466014c
```

Example prompt: Can you pull up all the individual investment funds that Sequoia Capital has — things like their Growth Fund, Scout Fund, etc.? Use their Aviato company ID or LinkedIn URL to look them up.

## When to prefer this

Use this endpoint when you need fund-level detail for a specific company's investment activity — particularly for VC and PE firms where individual named funds (e.g., 'Growth Fund III') are distinct entities. Prefer this over general company investment endpoints when the user needs the fund vehicle breakdown rather than portfolio companies. It is cost-efficient for multi-page queries due to the free-pagination billing model when parentRequestId is used correctly.

## Known failure modes

- Missing or invalid company identifier (id, website, or LinkedIn fields) returns an error or empty result
- Changing filter parameters mid-pagination starts a new billable request instead of continuing the previous one
- Exceeding perPage maximum of 100 results in a validation error
- Company not found in Aviato database returns empty fund list
- Invalid parentRequestId breaks the free-pagination chain and may incur additional charges

## How this service works

Get individual funds that a company has invested in (e.g. Sequoia's Growth Fund). Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

Returns a paginated list of individual investment funds associated with the queried company, including fund-level details. The response also includes a billing requestId that should be saved for subsequent page requests on the same search to avoid being charged for pagination calls.

## 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": "Aviato company ID"
      },
      "page": {
       "type": "integer",
       "description": "Page number For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "perPage": {
       "type": "integer",
       "description": "Results per page (max 100)"
      },
      "website": {
       "type": "string"
      },
      "linkedinID": {
       "type": "string"
      },
      "linkedinURL": {
       "type": "string"
      },
      "linkedinNumID": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aviato-company-investment-funds-lookup-f466014c/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)
