# Orthogonal Person Vestings Lookup

> Orthogonal Person Vestings Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.16/call, status unknown (last checked 2026-09-15).

Retrieves vesting schedule records for a person identified by ID, email, or LinkedIn profile, with paginated billing support.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/person/vestings
- Price: $0.16/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-person-vestings-lookup-3ac69be5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8HofpuTK0L7VgRrwie8Gx

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-person-vestings-lookup-3ac69be5
```

Example prompt: Can you pull up the vesting schedule records for Jane Smith — her LinkedIn profile is linkedin.com/in/janesmith — and show me the first page of results?

## When to prefer this

Choose this endpoint when you need structured vesting schedule data tied to a specific individual, identified by email, LinkedIn profile, or internal ID. It is especially useful for due diligence workflows, HR analytics, or equity research where you need to page through multiple records cost-efficiently using the parentRequestId billing continuation feature. Prefer this over generic people-search endpoints when vesting/equity data is specifically required.

## Known failure modes

- Person not found — no vesting records exist for the given identifier
- Invalid or missing identifier — no id, email, or LinkedIn parameter provided
- LinkedIn URL or ID format not recognized
- Page number out of range for available results
- Rate limiting or payment failure via x402 protocol
- Changing filter parameters mid-pagination starts a new billable request instead of continuing

## How this service works

Get vestings of a person. 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 vesting records associated with the specified person, including grant details, vesting schedules, and cliff/vesting dates. Also returns pagination metadata and a billing requestId that can be reused as parentRequestId for free subsequent page calls on the same logical query.

## 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"
      },
      "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."
      },
      "email": {
       "type": "string"
      },
      "perPage": {
       "type": "integer",
       "description": "Results per page (max 100)"
      },
      "linkedinID": {
       "type": "string"
      },
      "linkedinURL": {
       "type": "string"
      },
      "linkedinEntityId": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-person-vestings-lookup-3ac69be5/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)
