Back To Home
SolBox API Dashboard
API Documentation
Premium Tier
100
Active Nodes
100.0%
Success Rate
200ms
Avg Response
100.0
node per block
API Authentication
To get your API key go to
pricing
API Endpoints
Storage
Upload File
POST
Upload files to decentralized storage with encryption
/api/files/upload
List Files
GET
Retrieve all files with metadata and analytics
/api/files
Get File
GET
Get detailed information about a specific file
/api/files/{id}
Delete File
DELETE
Permanently remove files from all storage nodes
/api/files/{id}
Sharing
Create Share Link
POST
Generate secure, time-limited sharing links
/api/files/{id}/share
Analytics
Get Analytics
GET
Retrieve usage statistics and performance metrics
/api/analytics
API Console
Code Examples
Response
API Console
POST
/api/files/upload
Select File
Request Body
json
Ln 1, Col 1
Run
{ "name": "example-file.jpg", "metadata": { "tags": ["example", "demo"], "description": "Sample file upload", "project": "my-project" }, "encryption": { "type": "aes-256-gcm", "password": "optional-password" }, "storage": { "redundancy": 3, "regions": ["us-east", "eu-west"], "tier": "hot" }, "access": { "public": false, "expires": "2024-12-31T23:59:59Z" } }
Execute Request