# Storage API Reference

> API reference for the storage package.

*Canonical: https://makerkit.dev/docs/tanstack-drizzle/storage/api-reference*

---

The service exposed by `@kit/storage` returns an instance of the [Unstorage API](https://unstorage.unjs.io/guide).

Every method is documented in the [Unstorage API](https://unstorage.unjs.io/guide) documentation - so you can find the complete API reference there.

## Usage

```typescript
import { getStorageService } from '@kit/storage';

// this is an instance of the Unstorage API
const storage = await getStorageService(); 
```
