Upload your first file to EGreed Cloud
A five-minute tutorial that walks you through uploading, sharing, and versioning a file.
Updated June 30, 2026 5 min read
Prerequisites
You need an EGreed account and API key.
Upload a file
curl -X POST https://api.egreedtech.org/v1/cloud/objects \
-H "Authorization: Bearer $EGREED_API_KEY" \
-F file=@./hello.txt
Share it
Generate a signed URL that expires in one hour:
curl -X POST https://api.egreedtech.org/v1/cloud/objects/OBJECT_ID/share \
-H "Authorization: Bearer $EGREED_API_KEY" \
-d '{"ttl":3600}'
tutorialcloudgetting-started