# Aviato Company Enrichment via x402.orthogonal.com

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

Returns enriched company profile data (funding, founders, acquisitions, investments, social profiles) given any company identifier such as LinkedIn URL, website, or Crunchbase ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/company/enrich
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aviato-company-enrichment-via-x402-orthogonal-com-a3743e98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gIwCWrTgmFHruAPXBDJ6M

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-enrichment-via-x402-orthogonal-com-a3743e98
```

Example prompt: Can you pull up the full Aviato enrichment for Stripe — use their LinkedIn URL linkedin.com/company/stripe — and include all their funding rounds, acquisitions, and founders?

## When to prefer this

Choose this endpoint when you need structured, enriched company intelligence from Aviato's database — particularly funding, acquisition, and founder data — and you have any common company identifier (LinkedIn URL, website, Crunchbase ID, etc.). It is especially useful for CRM enrichment, investor research, and competitive analysis workflows where you need go-beyond-basic company facts. Prefer over generic web scraping when you need structured relational data rather than raw HTML.

## Known failure modes

- Company not found in Aviato database — returns empty or null result
- Ambiguous identifier resolves to wrong company — verify with preview mode first
- Stale data returned when maxDataAgeDays threshold not set and rescrape=false
- Rate limit or payment failure via x402 protocol — 402 response if USDC balance insufficient
- Invalid identifier format (e.g. malformed LinkedIn URL) — likely returns 400 or empty result

## How this service works

Get enriched details on a company. Pass any identifier (id, linkedinURL, website, etc.).

## Output

A structured company profile object containing core company details (name, description, industry, headcount, location) plus optional relational data when full=true: funding rounds with amounts and investors, known acquisitions, portfolio investments, founder profiles, and associated funds. Preview mode returns minimal identifying info without consuming a paid credit.

## 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"
      },
      "full": {
       "type": "boolean",
       "description": "Include all relational data (funding, investments, acquisitions, founders, funds)"
      },
      "preview": {
       "type": "boolean",
       "description": "Minimal info without charging a credit"
      },
      "website": {
       "type": "string"
      },
      "goldenID": {
       "type": "string"
      },
      "rescrape": {
       "type": "boolean",
       "description": "Auto-rescrape stale data"
      },
      "twitterID": {
       "type": "string"
      },
      "dealroomID": {
       "type": "string"
      },
      "facebookID": {
       "type": "string"
      },
      "linkedinID": {
       "type": "string"
      },
      "angellistID": {
       "type": "string"
      },
      "linkedinURL": {
       "type": "string",
       "description": "LinkedIn URL (e.g. linkedin.com/company/google)"
      },
      "pitchbookID": {
       "type": "string"
      },
      "wellfoundID": {
       "type": "string"
      },
      "crunchbaseID": {
       "type": "string"
      },
      "linkedinNumID": {
       "type": "string"
      },
      "producthuntID": {
       "type": "string"
      },
      "maxDataAgeDays": {
       "type": "integer",
       "description": "Days threshold for stale data"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aviato-company-enrichment-via-x402-orthogonal-com-a3743e98/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)
