# Orthogonal Aviato Company Founders Lookup

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

Retrieves the founders of a specified company using Aviato data, with paginated results and smart billing for multi-page queries.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/company/founders
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-aviato-company-founders-lookup-a11dc2e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aSS_ls_gpqzqQ1TM6mind

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-aviato-company-founders-lookup-a11dc2e0
```

Example prompt: Who are the founders of the company with LinkedIn URL linkedin.com/company/stripe? Pull up to 25 results per page using Aviato data.

## When to prefer this

Use this endpoint when you need to identify the founding team of a specific company and have at least one identifier (Aviato company ID, website, or LinkedIn URL/ID). It is especially useful for investor research, competitive intelligence, founder outreach, and CRM enrichment workflows. The built-in pagination billing model (free subsequent pages using parentRequestId) makes it cost-efficient for companies with many founders. Prefer this over generic people-search endpoints when you specifically want founder-role individuals tied to a known company.

## Known failure modes

- No company found for the given ID, website, or LinkedIn identifiers — returns empty results
- Invalid or missing required identifier — returns a 400-level error
- Pagination with changed filters treated as a new billable request — unexpected charges if parameters change mid-pagination
- Rate limits or quota exceeded — returns a 429 or payment error
- LinkedIn URL format not recognized — lookup fails silently or returns no results

## How this service works

Get founders of the specified company. 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 founder profiles associated with the specified company, including personal and professional data sourced from Aviato. Also returns a billing requestId that can be used as parentRequestId for subsequent pages at no additional cost.

## 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/orthogonal-aviato-company-founders-lookup-a11dc2e0/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)
