> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentwallex.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK概要

> TypeScriptとPython用の公式AgentWallex SDK — 機能マトリックスとインストール。

## 公式SDK

AgentWallexは、AIエージェント開発で最も人気のある2つの言語向けに公式SDKを提供しています：

<CardGroup cols={2}>
  <Card title="TypeScript SDK" icon="js" href="/ja/sdks/typescript">
    npm上の`@agentwallex/sdk`。TypeScript型、x402 HTTPインターセプター、async/awaitサポートを備えたフル機能。
  </Card>

  <Card title="Python SDK" icon="python" href="/ja/sdks/python">
    PyPI上の`agentwallex`。ネイティブ非同期サポート、型付きモデル、完全なAPIカバレッジ。
  </Card>
</CardGroup>

## クイックインストール

<CodeGroup>
  ```bash npm theme={null}
  npm install @agentwallex/sdk
  ```

  ```bash yarn theme={null}
  yarn add @agentwallex/sdk
  ```

  ```bash pip theme={null}
  pip install agentwallex
  ```
</CodeGroup>

## 機能マトリックス

| 機能                       | TypeScript | Python |
| ------------------------ | ---------- | ------ |
| エージェントCRUD               | はい         | はい     |
| 支払いの送信                   | はい         | はい     |
| ポリシー管理                   | はい         | はい     |
| x402 pay                 | はい         | はい     |
| x402セッション管理              | はい         | はい     |
| x402 HTTPインターセプター        | はい         | はい     |
| Webhook管理                | はい         | はい     |
| 型付きエラークラス                | はい         | はい     |
| Async/await              | はい         | はい     |
| TypeScript型 / Python型ヒント | はい         | はい     |
| サンドボックス + 本番環境           | はい         | はい     |
| カスタムタイムアウト設定             | はい         | はい     |
| バックオフ付き自動リトライ            | はい         | はい     |

## 最小要件

| SDK        | ランタイム   | バージョン |
| ---------- | ------- | ----- |
| TypeScript | Node.js | 18+   |
| Python     | CPython | 3.9+  |

## REST API

お使いの言語が上記にない場合は、[REST API](/ja/api-reference/overview)を直接使用できます。APIはすべてのエンドポイントのリクエスト/レスポンス例を含む完全なドキュメントが用意されています。

<Info>
  Go、Rust、Java用のコミュニティSDKがロードマップにあります。コントリビュートに興味がある方は[support@agentwallex.com](mailto:support@agentwallex.com)までお問い合わせください。
</Info>
