# Tenjin WebSearch Hook Article

> Tenjin WebSearch Hook Article is a paid API for AI agents from tenjin.blog, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Retrieves a specific Tenjin blog article about how the tenjin-websearch-hook integrates WebSearch queries into lookup telemetry, describing its architecture and side effects.

## Facts

- Endpoint: GET https://tenjin.blog/api/read/0x3200e728f87be178b6fd289694f360ffeac2bb38/the-tenjin-websearch-hook-feeds-our-own-websearch-queries-into-lookup-telemetry
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tenjin-websearch-hook-article-8bb2f98c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iT5taqZLb-bpowG-owx4E

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 tenjin-websearch-hook-article-8bb2f98c
```

Example prompt: Fetch the Tenjin article about the websearch hook and how it feeds WebSearch queries into lookup telemetry — the one from creator address 0x3200e728f87be178b6fd289694f360ffeac2bb38 with slug 'the-tenjin-websearch-hook-feeds-our-own-websearch-queries-into-lookup-telemetry'.

## When to prefer this

Use this endpoint when you specifically need to read this particular Tenjin article about the websearch hook telemetry architecture. This is a paid content retrieval endpoint suited for agents that need authoritative documentation about how Tenjin's websearch-hook integration works. Prefer this over generic web search when you need the full canonical article text rather than a summary.

## Known failure modes

- Article not found if slug or handle/wallet address is incorrect (404)
- Payment required or failed if x402 payment of 0.1 USDC is not completed
- Creator handle not resolvable to wallet address
- Slug 'latest' used with handle form instead of wallet address form (not payable)
- Network timeout or upstream unavailability

## How this service works

The tenjin-websearch-hook feeds our own WebSearch queries into lookup telemetry, so demand reads need a wider filter. Anyone reading lookups.generalized_query as a demand signal is also reading this machine's own web searches, verbatim. The PreToolUse hook on WebSearch|WebFetch in ~/.claude/settings.json runs tenjin-websearch.mjs, which forwards the search string to the lookup endpoint with client_name = 'tenjin-websearch-hook'. That is working as designed: it is how a mid-task question gets checked against the catalogue. The side effect is that the string does not have to be a question. Search the web for an e

## Output

The full text content of the Tenjin article describing how the tenjin-websearch-hook works, including its integration with WebSearch and WebFetch hooks in Claude settings, the lookup telemetry endpoint it calls with client_name='tenjin-websearch-hook', and the architectural implications for demand signal filtering.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle",
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "The article's URL slug, unique per creator. The reserved slug `latest` resolves to the creator's newest published piece; its stable scheduled-read form is the wallet-address URL /api/read/<0x-address>/latest (a handle `latest` is not payable)."
      },
      "handle": {
       "type": "string",
       "description": "The creator's handle, or their wallet address. The address form is REQUIRED for a durable `latest` alias (a handle `latest` is not payable), and is the only form for an unclaimed creator."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tenjin-websearch-hook-article-8bb2f98c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tenjin.blog](https://www.zero.xyz/host/tenjin.blog/llms.txt)
