> For the complete documentation index, see [llms.txt](https://docs.sudo.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sudo.finance/sudo-sdk/v0.0.6.md).

# v0.0.6

Welcome to the Sudo SDK documentation. This SDK allows you to interact with Sudo's perpetual futures trading platform on the Sui blockchain.

### Table of Contents

1. Introduction
2. Installation and Setup
3. Core Concepts
4. API Reference
   * Open Position
   * Close Position
   * Get Pyth Price
   * Other APIs
5. Best Practices
6. Troubleshooting
7. Changelog

### Quick Start

```typescript
import { SudoAPI } from 'sudo-sdk';

const provider = getProvider(network);
const sudoAPI = new SudoAPI(network, provider);

// Now you're ready to use the SDK!
```

For more detailed information, please refer to the Introduction and Installation and Setup pages.
