# Japanese National Diet Minutes Full-Text Search

> Japanese National Diet Minutes Full-Text Search is a paid API for AI agents from diet.agentic-jp.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Full-text searches the official Japanese National Diet (国会会議録) proceedings archive, with filters for date range, house, and returning meeting metadata and matching snippets.

## Facts

- Endpoint: POST https://diet.agentic-jp.com/minutes/search
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/japanese-national-diet-minutes-full-text-search-b5af3beb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cFjB0t9-sKFcOS_RyBC99

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 japanese-national-diet-minutes-full-text-search-b5af3beb -d '<json body>'
```

Example prompt: Search the Japanese National Diet minutes archive for all debates mentioning '原子力発電' (nuclear power) in the House of Representatives (shugiin) between 2011-03-11 and 2012-03-31, and return up to 20 results.

## When to prefer this

Use this endpoint when you need to find specific debates, speeches, or discussions in the official Japanese National Diet archive (国会会議録), especially when researching legislative history, policy debates, or tracking when a topic was discussed in parliament. Prefer this over general web search when you need authoritative, structured parliamentary records with precise date and house filtering.

## Known failure modes

- Query string exceeds 200 characters — request rejected
- Invalid date format (not YYYY-MM-DD) — parsing error or 400 response
- Invalid house value (not 'shugiin' or 'sangiin') — validation error
- No matching records found — empty results array
- Limit outside 1–100 range — validation error
- Payment insufficient for dynamic per-result fee — payment or 402 error

## How this service works

Full-text search the official Japanese (JP) Diet proceedings archive (国会会議録, sourced from the National Diet Library), filterable by date range, house, committee, and speaker. Returns meeting metadata and matching snippets. Dynamic pricing: a base fee plus a small per-result fee. Use to find when and where a topic was debated.

## Output

Returns a list of up to `limit` matching Diet session records, each with meeting metadata (date, house, committee, speaker) and text snippets showing where the query term appeared in the official proceedings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "house": {
   "enum": [
    "shugiin",
    "sangiin"
   ],
   "type": "string"
  },
  "limit": {
   "type": "number",
   "maximum": 100,
   "minimum": 1,
   "description": "Max results, 1–100"
  },
  "query": {
   "type": "string",
   "maxLength": 200,
   "description": "Full-text query for Diet minutes (国会会議録). The field `q` is also accepted as an alias."
  },
  "to_date": {
   "type": "string",
   "description": "YYYY-MM-DD"
  },
  "from_date": {
   "type": "string",
   "description": "YYYY-MM-DD"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "ステーブルコイン",
  "results": [
   {
    "date": "2025-02-15",
    "committee": "財務金融委員会",
    "meeting_id": "11704041X00220250215"
   }
  ],
  "total_hits": 47
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/japanese-national-diet-minutes-full-text-search-b5af3beb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from diet.agentic-jp.com](https://www.zero.xyz/host/diet.agentic-jp.com/llms.txt)
