# AgentUtil Docs Lookup by Page ID

> AgentUtil Docs Lookup by Page ID is a paid API for AI agents from docs.agentutil.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Retrieves the full chunked content of a specific documentation page by its ID, for a given platform and optional page type.

## Facts

- Endpoint: POST https://docs.agentutil.net/v1/lookup
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/docs-agentutil-net-d47d2510
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xW1Ov7N5LkKDgB3rODPf1

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 docs-agentutil-net-d47d2510 -d '<json body>'
```

Example prompt: Can you pull up the full documentation page for the productVariantCreate mutation on the Shopify platform from AgentUtil?

## When to prefer this

Use this endpoint when you have a specific documentation page ID (e.g. from a prior /query search result) and need the full content rather than a snippet. Prefer this over /query when you already know the exact page name and platform and need complete context rather than discovery.

## Known failure modes

- Unknown page ID returns empty or not-found response
- Missing required 'page' parameter causes validation error
- Unrecognized platform ID returns no results
- Mismatched type filter (e.g. querying a mutation as a query) may return no match
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Retrieve a specific documentation page by ID. Returns the full chunked content — use after /query to get complete context for a relevant result.

## Output

Returns the full chunked textual content of the requested documentation page, including all sections and context needed to understand the named page ID on the specified platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "string",
   "description": "Page identifier (e.g. productVariantCreate, ExecuteSQL)"
  },
  "type": {
   "type": "string",
   "description": "Optional page type filter (e.g. mutation, query, function)"
  },
  "platform": {
   "type": "string",
   "description": "Platform ID (e.g. shopify, filemaker)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/docs-agentutil-net-d47d2510/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from docs.agentutil.net](https://www.zero.xyz/host/docs.agentutil.net/llms.txt)
