80
Agent Ready
Agentic Readiness Score
+25 llms.txt
+20 OpenAPI
missing +20 ai-plugin
ai-tools
ai-friendlyaillms-txtopenapiapimcp
Agentic Signals
🤖
ai-plugin.json
Not found
🏷
Schema.org Markup
Found
Embed this badge
Show off your agentic readiness — the badge auto-updates when your score changes.
llms.txt Content
# Shirabe — Japan-specific AI-Native API Platform
> 日本特化 AI ネイティブ API プラットフォーム。暦・住所・日本語テキスト処理を AI エージェント向けに提供。
> Japan-specific AI-native API platform providing calendar, address normalization,
> and Japanese text processing APIs for AI agents. Built on strict OpenAPI 3.1 compliance
> so that LLMs can discover and invoke these APIs without manual integration.
Shirabeは「生成AIが勝手に使い出す」ことを判断基準に設計された日本特化AIネイティブAPIプラットフォームです。
OpenAPI 3.1準拠で、ChatGPT GPTs / Claude Tool Use / Gemini Function Calling / LangChain / Dify から即利用できます。
暦 API・住所 API(2026-05-01 リリース)・テキスト処理 API(2026-05-18 リリース)・法人番号 API(2026-06-29 リリース)いずれも本番稼働中(v1.0.0)。
## 今すぐ試す / Try it now(API キー不要・登録不要)
# 暦: 指定日の六曜・暦注・干支・二十四節気(匿名 Free 枠 月 10,000 回)
curl https://shirabe.dev/api/v1/calendar/2026-07-06
# 住所: 住所正規化(匿名 Free 枠 月 5,000 回)
curl -X POST https://shirabe.dev/api/v1/address/normalize -H "Content-Type: application/json" -d '{"address": "東京都港区六本木6-10-1"}'
# テキスト: 姓名分割(匿名 Free 枠 月 10,000 回)
curl -X POST https://shirabe.dev/api/v1/text/name-split -H "Content-Type: application/json" -d '{"name": "山田太郎"}'
# 法人番号: 13 桁法人番号の lookup(匿名 Free 枠 月 5,000 回)
curl -X POST https://shirabe.dev/api/v1/corporation/lookup -H "Content-Type: application/json" -d '{"law_id": "7000012050002"}'
## SDK / エージェント統合 / SDK & agent frameworks
公式 SDK `shirabe-sdk`(npm / PyPI、core 依存ゼロ)で 4 API を Vercel AI SDK / LangChain / OpenAI Agents SDK の tool として直接呼べます。
npm install shirabe-sdk
OpenAPI Spec (preview)
openapi: 3.1.0
info:
title: Shirabe Calendar API
summary: 日本の暦(六曜・暦注・干支・二十四節気)と用途別吉凶判定を、天文学的精度で返す AI ネイティブ REST API。
description: |
# 日本語
**Shirabe Calendar API** は、日本の暦情報を天文学的精度で提供し、
さらに用途別の吉凶コンテキスト判定とスコアリングを返す AI ネイティブ REST API です。
## クイックスタート(API