Storra Cloud

Cloud API Documentation

Welcome to the Storra Cloud API documentation. Every endpoint described here is implemented in this application under /api/v1/client.

Overview

Storra Cloud provides secure file storage with a REST API for programmatic access. Authenticate with an API key in the X-API-Key header.

  • File management - upload, download, list, move, copy, delete
  • Folders - create folders and read folder metadata
  • Sharing - grant VIEW, EDIT, or OWNER permissions to other registered users
  • Trash - soft-delete with restore and empty

Requirements

API access requires a Cloud Pro subscription (plan_pro). Free and Plus accounts receive 403 when using the client API. Create API keys from Authentication after upgrading.

Base URL

All client API routes are rooted at:

https://cloud.storra.host/api/v1/client

Endpoints

See also Error Handling and Rate Limiting.

First Request

curl -X GET https://cloud.storra.host/api/v1/client/users/me \
  -H "X-API-Key: sk_your_api_key_here"
Was this page helpful?