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

# Client SDKs

We provided libraries in TypeScript that make is easier to with the Trust Stack API.

# TypeScript

[TypeScript library GitHub repo](https://github.com/trust-stack/trust-stack-js)

Example

```typescript theme={null}
import { TrustStack } from '@truststack/sdk';


TrustStack.configure({ 
    accessKey: 'my-access-key' // defaults to process.env["TRUSTSTACK_ACCESS_KEY"]
}); 

const client = new TrustStack();
const organizations = await client.admin.createOrganization({ name: 'ACME Farms' });
```
