Skip to content
P
Personal workspaceYour services, together
WorkspaceS3 API keys
FIRESTARTER STORAGE

S3 API keys

Secure access to your storage, scoped to your applications.

Your next project starts here.

Connect your wallet above to view usage and create S3 API keys.

S3 API keys

Create a separate key for each application.

Connect your first application

Create an S3 API key to start uploading with your favorite tools.

Make your first request

Create a bucket with the CLI first, then use it with your SDK.

Full documentation
export AWS_ACCESS_KEY_ID='<your-access-key>'
export AWS_SECRET_ACCESS_KEY='<your-secret-key>'
export AWS_DEFAULT_REGION=us-east-1
export AWS_REQUEST_CHECKSUM_CALCULATION=when_required
export AWS_RESPONSE_CHECKSUM_VALIDATION=when_required
aws configure set default.s3.addressing_style path

aws --endpoint-url 'https://api.pipedev.network' \
  s3api create-bucket --bucket my-bucket
aws --endpoint-url 'https://api.pipedev.network' \
  s3 cp ./hello.txt s3://my-bucket/hello.txt