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

# SDKs

> Official Slash SDKs for Python and Node.js

## Official SDKs

Slash offers official SDKs to make integrating with our API easier:

* **Python**: [slash-sdk on PyPI](https://pypi.org/project/slash-sdk/)
* **Node.js**: [slash-sdk on npm](https://www.npmjs.com/package/slash-sdk)

## Installation

### Python

```bash theme={null}
pip install slash-sdk
```

### Node.js

```bash theme={null}
npm install slash-sdk
```

## Quick Start

### Python

```python theme={null}
from slash_sdk import SlashClient

client = SlashClient(api_key="your-api-key")

# Get your legal entity
legal_entity = client.legal_entity.get()
```

### Node.js

```typescript theme={null}
import { SlashClient } from 'slash-sdk';

const client = new SlashClient({ apiKey: 'your-api-key' });

// Get your legal entity
const legalEntity = await client.legalEntity.get();
```
