# agentfeeds.jp e-Stat Statistical Catalog Search

> agentfeeds.jp e-Stat Statistical Catalog Search is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search Japan's official government statistics catalog (e-Stat) by keyword to find matching survey table metadata including IDs, titles, ministries, and update cycles

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/estat/search
- 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/agentfeeds-jp-e-stat-statistical-catalog-search-a73287e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pzbespp9vTMRoVF1N6pvp

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 agentfeeds-jp-e-stat-statistical-catalog-search-a73287e1
```

Example prompt: Search Japan's official e-Stat government statistics catalog for tables related to 消費者物価指数 (consumer price index) and return up to 20 results with their table IDs and publishing ministries.

## When to prefer this

Choose this endpoint when you need to discover which Japan government statistical table IDs exist for a given topic before fetching actual data rows. This is the catalog search step — use it first to identify table IDs, then call estat.table_data with those IDs to retrieve actual figures. Prefer this over general web search when you need authoritative, ministry-verified Japanese government statistics with known provenance and CC BY-compatible licensing.

## Known failure modes

- Keyword returns zero results if the Japanese term is misspelled or uses incorrect kanji
- Limit parameter outside 1-50 range may cause validation error
- API may return partial results if e-Stat upstream is slow or unavailable
- Non-Japanese keywords may yield poor or no results since the catalog is Japanese-language
- Payment failure (402) if USDC balance insufficient for $0.002 per-call fee

## How this service works

Search Japan's official statistics catalog (e-Stat / 政府統計の総合窓口) by keyword — population, prices, trade, labor, and hundreds of other government survey series. Returns table metadata (id, title, publishing ministry, cycle, last updated); use the id with estat.table_data to fetch actual figures. Source: e-Stat API, government standard terms of use (CC BY-compatible, commercial use permitted). Factual catalog data only.

## Output

A list of up to 50 statistical table metadata records from Japan's e-Stat catalog, each containing a unique table ID (usable with estat.table_data to fetch actual figures), table title, publishing ministry, survey cycle, and last-updated date — all sourced from Japan's official government statistics portal under CC BY-compatible terms.

## 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",
     "required": [
      "keyword"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "1-50, default 10"
      },
      "keyword": {
       "type": "string",
       "description": "Japanese search keyword, e.g. 人口推計, 消費者物価指数, 貿易統計"
      }
     }
    }
   },
   "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/agentfeeds-jp-e-stat-statistical-catalog-search-a73287e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
