Upload your first file to EGreed Cloud

A five-minute tutorial to upload, share, and version a file.

Updated June 30, 2026 5 min read

Prerequisites

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

curl -X POST https://api.egreedtech.org/v1/cloud/objects/OBJECT_ID/share \
  -H "Authorization: Bearer $EGREED_API_KEY" \
  -d '{"ttl":3600}'
tutorialcloudgetting-started

Was this article helpful?

Related articles