# Whitepages Lookup via x402 Microservice

> Whitepages Lookup via x402 Microservice is a paid API for AI agents from grokzilla.shop, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up person or address data from Whitepages via a paid x402 microservice endpoint, returning contact and identity information.

## Facts

- Endpoint: POST https://grokzilla.shop/api/skills/whitepages
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whitepages-lookup-via-x402-microservice-842bb9ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fWxRvG2Xe7KB2nPYJ00fb

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 whitepages-lookup-via-x402-microservice-842bb9ec -d '<json body>'
```

Example prompt: Can you look up contact and address information for John Smith living in Austin, Texas using the Whitepages skill?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call people search or address/phone lookup without a monthly Whitepages subscription, especially in agent workflows that require on-demand identity enrichment with minimal setup. It is ideal for low-volume, sporadic lookups billed at $0.01 USDC per call via x402.

## Known failure modes

- Invalid or missing required input fields returns an error
- Person or address not found in Whitepages database returns empty results
- Payment failure via x402 prevents endpoint access
- Malformed HTTP method or path causes request rejection
- Rate limiting or quota exhaustion on the underlying Whitepages API

## How this service works

Agent-ready microservices with x402 + Stripe rails, volume primitives, tutorials, and applet UI.

## Output

Returns a JSON object with an ok status flag and the resolved path, along with Whitepages-sourced data such as person name, address, phone number, and associated identity records for the queried individual or address.

## 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": {
    "body": {
     "type": "object"
    },
    "path": {
     "type": "string"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "path": "/api/skills/whitepages"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whitepages-lookup-via-x402-microservice-842bb9ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grokzilla.shop](https://www.zero.xyz/host/grokzilla.shop/llms.txt)
