日本の補助金 11,601 件 + 採択履歴 218,000 件 + 自治体公募 3,055+ を、AI agent から呼び出せる REST API / MCP。検索・採択確率・系譜・締切モニタが 1 呼び出しで完結。署名付き JSON。
curl https://api.jpcite.com/v1/programs/search?prefecture=東京都&fy=2026 で、東京都の 2026 年度公募中補助金が JSON で返る。各レコードに source_doc + extracted_at + verified_by + signature がついており、agent はそのまま引用・監査ログに残せる。
日本の補助金情報は、経産省 (J-Grants)、中小企業庁、地方自治体、商工会議所など 数千の発信源 に分散しています。LLM 単体ではすべてを正確に把握できず、URL リンクも 6 ヶ月で半数が 404 になります。jpcite は毎日クロール+ Textract OCR + Ed25519 署名で、agent が即引用できる形に正規化します。
GET https://api.jpcite.com/v1/programs/search
?prefecture=東京都
&theme=IT
&fiscal_year=2026
&status=open
Authorization: Bearer YOUR_KEY
→ {
"count": 7,
"programs": [
{
"id": "P-13105-IT-2026",
"title": "IT導入補助金 通常枠 (2026)",
"amount_max": 4500000,
"deadline": "2026-08-31",
"source_doc": "https://...",
"extracted_at": "2026-05-18T03:14:00Z",
"signature": "ed25519:..."
}
]
}
POST https://api.jpcite.com/v1/review_band
{
"program_id": "P-13105-IT-2026",
"applicant": { "jsic_major": "G", "employees": 12, "prefecture": "東京都" }
}
→ { "review_band": "mid", "n_cohort": 384, "model": "cohort_v3", "note": "採択を保証しません (レビュー観点の参考値)" }
POST https://api.jpcite.com/v1/watch
{
"filters": { "theme": "DX", "prefecture": "東京都" },
"webhook_url": "https://your-app.example.com/hook",
"notify_days_before": [30, 14, 7, 1]
}
→ 該当制度の deadline 接近時、webhook に push (state token 24h TTL)
| 項目 | Opus 4.7 + Web 検索 | jpcite Subsidy API |
|---|---|---|
| 1 タスクのターン数 | 5〜10 | 1 |
| 1 タスク当たりコスト | ¥20〜40 | ¥3 |
| 引用 URL の 6 ヶ月生存率 | ~50% | 100% (snapshot) |
| 採択確率推定 | 不可 | cohort 218K 件 |
| 無料枠 | なし | 3 req/日 |
| 署名付き | なし | Ed25519 |
# Claude Code / Cursor / Windsurf 共通
npx -y @bookyou/jpcite
# API 直叩き (任意の agent framework)
curl -H "Authorization: Bearer free" \
"https://api.jpcite.com/v1/programs/search?prefecture=東京都&fy=2026"
最終更新: 2026-05-18 / 公開元: Bookyou株式会社 (適格事業者 T8010001213708)