# Storage API Reference

> API reference for the storage package.

*Canonical: https://makerkit.dev/docs/nextjs-prisma/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), 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();
```
