> ## Documentation Index
> Fetch the complete documentation index at: https://firecrawl-noaa-mar-900-create-self-partnership-provisioning.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ドキュメント検索

`/support/docs-search` エンドポイントは、Firecrawl の公開ドキュメントに基づいて質問に回答します。Firecrawl APIキーが必要です。関連するドキュメントページへの引用付きで、簡潔な回答を返します。

<div id="use-cases">
  ## ユースケース
</div>

* **AIエージェント**：Firecrawl APIの使い方、パラメータ、ベストプラクティスを調べる必要がある場合
* **サポートボット**：ドキュメントをもとに顧客からの質問に回答する場合
* **開発ツール**：関連ドキュメントをインラインで表示する場合

<div id="example">
  ## 例
</div>

```bash theme={null}
curl -X POST https://api.firecrawl.dev/v2/support/docs-search \
  -H "Authorization: Bearer fc-YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "question": "what header carries the webhook signature, and how do I verify it?"
  }'
```

<div id="response">
  ### レスポンス
</div>

```json theme={null}
{
  "requestId": "req_...",
  "answer": "The signature is sent in the X-Firecrawl-Signature header...",
  "evidence": [
    {
      "pathOrUrl": "webhooks/security.mdx#L1-L52",
      "reason": "Documents webhook signature verification"
    }
  ],
  "usage": { "inputTokens": 4356, "outputTokens": 688, "totalTokens": 5044 },
  "durationMs": 11252
}
```

<div id="response-fields">
  ## レスポンスフィールド
</div>

| フィールド        | 型       | 説明                                                   |
| ------------ | ------- | ---------------------------------------------------- |
| `answer`     | string  | Firecrawl のドキュメントに基づく簡潔な回答                           |
| `evidence`   | array   | 参照したドキュメントページ。`pathOrUrl` と `reason` を含みます           |
| `usage`      | object  | トークン使用量 (`inputTokens`、`outputTokens`、`totalTokens`) |
| `durationMs` | integer | 合計実行時間 (ミリ秒)                                         |

機能の詳細なガイドについては、[Ask 機能のドキュメント](/ja/features/ask)を参照してください。

> Firecrawl APIキーが必要な AI エージェントですか？ 自動オンボーディング手順については、[firecrawl.dev/agent-onboarding/SKILL.md](https://www.firecrawl.dev/agent-onboarding/SKILL.md)を参照してください。
