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

# SDKs & Libraries

> Official SDKs and community libraries for popular programming languages

Our SDKs provide a convenient way to integrate WSAPI into your applications. Each SDK includes authentication handling, request/response parsing, and comprehensive error handling.

## Choose your language

<CardGroup cols={3}>
  <Card title="Node.js / TypeScript" icon="js" href="/sdks/nodejs">
    Full-featured SDK with HTTP client, SSE support, and complete type definitions.
  </Card>

  <Card title=".NET (C#)" icon="microsoft" href="/sdks/dotnet">
    .NET 7+ library with dependency injection, SSE client, and async patterns.
  </Card>

  <Card title="Python" icon="python" href="/sdks/python">
    Python SDK with sync/async support, webhook helpers, and SSE streaming.
  </Card>
</CardGroup>

## SDK comparison

| Feature              | Node.js         | .NET            | Python          |
| -------------------- | --------------- | --------------- | --------------- |
| HTTP Client          | Yes             | Yes             | Yes             |
| SSE (Pull Mode)      | Yes             | Yes             | Yes             |
| Webhook Helpers      | Yes             | Yes             | Yes             |
| TypeScript Types     | Yes             | N/A             | Type Hints      |
| Async Support        | Yes             | Yes             | Yes             |
| Error Handling Modes | Exception + Try | Exception + Try | Exception + Try |

## GitHub repositories

| Language             | Repository                                                                       |
| -------------------- | -------------------------------------------------------------------------------- |
| Node.js / TypeScript | [github.com/wsapi-chat/wsapi-node](https://github.com/wsapi-chat/wsapi-node)     |
| .NET 7+              | [github.com/wsapi-chat/wsapi-dotnet](https://github.com/wsapi-chat/wsapi-dotnet) |
| Python               | [github.com/wsapi-chat/wsapi-python](https://github.com/wsapi-chat/wsapi-python) |

<Note>
  Don't see your language? You can use the [HTTP REST API](/api-reference/overview) directly from any language that supports HTTP requests.
</Note>
