# Aviato Simple Person Search

> Aviato Simple Person Search 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).

Searches for people by full name with fuzzy matching, supporting paginated results and optional enrichment, billed per logical search rather than per page.

## Facts

- Endpoint: GET https://x402.orthogonal.com/aviato/person/simple/search
- 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-simple-person-search-03f4942b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xwiLATBEBxk9U5j_lIGfX

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-simple-person-search-03f4942b
```

Example prompt: Search for a person named 'Sarah Chen' in the Aviato people database and enrich the results — show me the first page.

## When to prefer this

Use this endpoint when you need a simple, name-based fuzzy person search without complex filter logic. It is ideal for straightforward lookups by full name with optional enrichment, and its pagination billing model (free subsequent pages for the same logical search) makes it cost-effective for iterating through large result sets. Prefer this over keyword-based person search when you have a specific name to query rather than topic keywords.

## Known failure modes

- Missing or invalid fullName parameter returns empty results or validation error
- Changing non-pagination parameters between page calls triggers a new billable request
- Exceeding perPage limit of 100 returns an error or is clamped
- Invalid parentRequestId causes the continuation call to be treated as a new billable request
- Enrichment may fail or return partial data if the person record is sparse

## How this service works

Simplified person search with pre-defined query parameters. 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 person records matching the fuzzy name query, along with a billing requestId for use in subsequent page calls (which are uncharged if non-pagination parameters remain unchanged). Optional enrichment adds detailed profile data per result.

## 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": {
      "page": {
       "type": "integer",
       "description": "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."
      },
      "enrich": {
       "type": "boolean",
       "description": "Auto-enrich results (charges 1 credit per result)"
      },
      "perPage": {
       "type": "integer",
       "description": "Max 100 results per page"
      },
      "fullName": {
       "type": "string",
       "description": "Fuzzy query on name"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aviato-simple-person-search-03f4942b/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)
