# agentfeeds.jp — e-Stat Statistical Table Data Fetcher

> agentfeeds.jp — e-Stat Statistical Table Data Fetcher is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Fetches data rows from a specific Japanese government e-Stat statistical table by ID, with all category codes automatically resolved to human-readable Japanese labels in a single call

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/estat/table/data
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeeds-jp-e-stat-statistical-table-data-fetcher-54ae8494
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7e9D2K2kWMxXm7F46mbW1

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-table-data-fetcher-54ae8494
```

Example prompt: Fetch the first 200 rows from e-Stat statistics table ID '0003448217' and give me the data with all the region, item, and time period codes already translated to their Japanese labels — I don't want to do a separate metadata lookup.

## When to prefer this

Use this endpoint when you already have a statsDataId (e.g. from agentfeeds.jp estat.search) and need the actual data rows from that table with human-readable category labels — without performing a separate metadata lookup and manual code-matching. Prefer this over calling e-Stat directly when you want label resolution handled automatically in one call.

## Known failure modes

- Invalid or unknown statsDataId returns an error (table not found in e-Stat)
- Limit out of range (must be 1-1000) returns a validation error
- Invalid cursor value returns a pagination error
- e-Stat upstream API unavailable causes a service error
- Payment failure (x402) prevents the call from being made

## How this service works

Fetch data rows from a specific e-Stat statistical table (by id from estat.search), with all category codes (region, item, time period, etc.) pre-resolved to their human-readable Japanese labels in a single call — normally requires a separate metadata lookup and manual code-matching against the raw e-Stat API. Source: e-Stat API, government standard terms of use (CC BY-compatible, commercial use permitted). Factual statistical data only; not investment or economic advice.

## Output

Returns an array of data rows from the specified e-Stat statistical table, where all category codes (region codes, item codes, time period codes, etc.) have been pre-resolved to their human-readable Japanese labels. Also includes a next_cursor value for pagination if more rows are available beyond the requested limit.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "statsDataId from estat.search"
      },
      "limit": {
       "type": "integer",
       "description": "1-1000, default 100"
      },
      "cursor": {
       "type": "integer",
       "description": "pagination cursor from a previous response next_cursor"
      }
     }
    }
   },
   "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-table-data-fetcher-54ae8494/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)
