# Aviato Company Employees Lookup

> Aviato Company Employees 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-15).

Retrieves a paginated list of employees for a specified company using Aviato data, identified by company ID, website, or LinkedIn details.

## Facts

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

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-employees-lookup-bf3e1ea3
```

Example prompt: Can you pull the first page of employees for Stripe — their LinkedIn URL is linkedin.com/company/stripe — and show me up to 50 results?

## When to prefer this

Use this endpoint when you need structured employee data for a specific company and can identify it by Aviato ID, website, or LinkedIn identifiers. It is ideal for B2B sales prospecting, competitive intelligence, recruiting, and org-chart research. The pagination billing model makes it cost-efficient for large companies — pay once for the search and paginate freely. Prefer this over generic web scraping when you need clean, structured employee data rather than raw HTML.

## Known failure modes

- Missing or invalid company identifier (no id, website, or LinkedIn fields provided) returns an error
- Invalid Aviato company ID returns empty results or 404
- Exceeding perPage max of 100 results in validation error
- Changing filter parameters between pages triggers a new billable request rather than free continuation
- Expired or invalid payment (x402) results in 402 Payment Required
- Rate limiting or upstream Aviato API downtime may cause timeouts

## How this service works

Get employees 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 employee records associated with the specified company, including relevant professional details per employee. The response also includes a billing requestId that can be used as a parentRequestId for subsequent pages of the same search at no additional charge.

## 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-employees-lookup-bf3e1ea3/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)
