> ## 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 Overview

> Official AgentWallex SDKs for TypeScript and Python — feature matrix and installation.

## Official SDKs

AgentWallex provides official SDKs for the two most popular languages in AI agent development:

<CardGroup cols={2}>
  <Card title="TypeScript SDK" icon="js" href="/sdks/typescript">
    `@agentwallex/sdk` on npm. Full-featured with TypeScript types, x402 HTTP interceptor, and async/await support.
  </Card>

  <Card title="Python SDK" icon="python" href="/sdks/python">
    `agentwallex` on PyPI. Native async support, typed models, and full API coverage.
  </Card>
</CardGroup>

## Quick Install

<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>

## Feature Matrix

| Feature                              | TypeScript | Python |
| ------------------------------------ | ---------- | ------ |
| Agent CRUD                           | Yes        | Yes    |
| Send payments                        | Yes        | Yes    |
| Policy management                    | Yes        | Yes    |
| x402 pay                             | Yes        | Yes    |
| x402 session management              | Yes        | Yes    |
| x402 HTTP interceptor                | Yes        | Yes    |
| Webhook management                   | Yes        | Yes    |
| Typed error classes                  | Yes        | Yes    |
| Async/await                          | Yes        | Yes    |
| TypeScript types / Python type hints | Yes        | Yes    |
| Sandbox + production environments    | Yes        | Yes    |
| Custom timeout configuration         | Yes        | Yes    |
| Automatic retry with backoff         | Yes        | Yes    |

## Minimum Requirements

| SDK        | Runtime | Version |
| ---------- | ------- | ------- |
| TypeScript | Node.js | 18+     |
| Python     | CPython | 3.9+    |

## REST API

If your language is not listed above, you can use the [REST API](/api-reference/overview) directly. The API is fully documented with request/response examples for every endpoint.

<Info>
  Community SDKs for Go, Rust, and Java are on the roadmap. If you are interested in contributing, reach out at [support@agentwallex.com](mailto:support@agentwallex.com).
</Info>
