AI向け回答入口
検証済み応答レイヤー(VRL)
VRL API(Verified Response Layer API)は、C³の登録済み公開Answer Cardだけを返す静的・決定論的な応答APIです。 生成AIのように、その場で自由回答を作るものではありません。登録済みの質問に一致した場合は RELEASE、未登録の質問は HOLD、人間確認が必要な質問は ESCALATE を返します。
- VRL APIは、登録済み公開Answer Cardだけを返す静的APIです。
- 未登録質問にはHOLDを返し、勝手に回答を生成しません。
- APIを叩く前に、Verify IDで仕様artifactを照合できます。
VRL APIとは
AI検索やAIエージェントが、C³の公開正本に基づく登録済み回答を参照するための入口です。 回答範囲は登録済み公開Answer Cardに限定され、runtime LLMは呼び出しません。
既知の登録質問は RELEASE、未登録質問は HOLD、人間連絡や確認経路が必要な質問は ESCALATE として返します。
APIエンドポイント
GET /api/verified-answer?question=what%20is%20vrl
POST /api/verified-answer
{
"question": "what is vrl"
}応答には status と answer_status が含まれます。どちらも RELEASE、HOLD、ESCALATE の同じ値を持ちます。 reason_code は単一の主理由、reason_codes は互換性と将来拡張のための配列aliasです。
APIを叩く前のpreflight
- Verify ID Registryで C3-REF-2026-0007 を解決します。
- Registry recordから artifact_url を読み取ります。
- 公開OpenAPI artifactを取得します。
- 取得したartifact bytesに対して sha256 を計算します。
- 計算値を content_hash と比較します。
- 不一致または取得不能の場合は HOLD として扱い、APIを呼び出しません。
- 一致した場合のみ /api/verified-answer を呼び出します。
現在の登録カード
| Card | Status | Triggers | Evidence |
|---|---|---|---|
| VRL-CARD-001 | RELEASE | what is c3 / what is c3 anchor | 3 |
| VRL-CARD-002 | RELEASE | what is verified web / what is the verified web | 3 |
| VRL-CARD-003 | RELEASE | what is verify id / what is a verify id | 4 |
| VRL-CARD-004 | RELEASE | what is the verified response layer / what is vrl | 4 |
| VRL-CARD-005 | RELEASE | what is c3 its api / what is the c3 its api | 4 |
| VRL-CARD-006 | RELEASE | what is topological gatekeeper / what is the topological gatekeeper | 3 |
| VRL-CARD-007 | RELEASE | what is echo verify / what is echo-verify | 3 |
| VRL-CARD-008 | RELEASE | what is byov / what is bring your own verify | 3 |
| VRL-CARD-009 | RELEASE | how can i support c3 / how can i sponsor c3 | 3 |
| VRL-CARD-010 | ESCALATE | how can i contact c3 / contact c3 anchor | 4 |
| VRL-CARD-011 | RELEASE | how does c3 answer unknown questions / what happens to unknown questions | 3 |
| VRL-CARD-012 | RELEASE | does c3 certify external systems / does c3 provide certification | 3 |
| VRL-CARD-013 | ESCALATE | can i rely on c3 for legal advice / does c3 provide legal advice | 3 |
| VRL-CARD-014 | RELEASE | what are c3 impact scenarios / what is c3 impact | 3 |
| VRL-CARD-015 | RELEASE | how does verified web change public information / what is the impact of verified web | 3 |
| VRL-CARD-016 | RELEASE | how does release gate affect ai operations / what is the impact of release gate | 3 |
| VRL-CARD-017 | RELEASE | what is support proof / how does support proof work | 3 |
| VRL-CARD-018 | RELEASE | what is japanese universal credit in c3 / what is c3 japanese universal credit | 3 |
このAPIが意味しないこと
- 対象内容の正確性確認を示すものではありません。
- 外部評価、endorsement、標章付与、適合結果を示すものではありません。
- 運用準備性の表明や広範な安全性の表明を意味しません。
- 法務・金融・医療その他の専門助言を提供するものではありません。
- raw query loggingは、このAPI routeでは実装していません。
用語メモ
Answer Card
VRLが返せる公開済みの回答単位です。登録済みカードに一致しない質問には、その場で自由回答を作りません。
artifact
OpenAPIやschemaなど、APIを呼び出す前に機械的に確認できる公開ファイルです。
preflight
APIを呼ぶ前に、Verify IDとartifactのhashを照合して参照先を確認する手順です。
このページのVerify ID
このIDは、VRL APIの人間向け説明ページを参照するためのRegistry recordです。VRL APIの挙動は変更しません。
- Verify ID
- C3-REF-2026-0008
- Registry Record
- https://registry.c3-anchor.jp/C3-REF-2026-0008