Vultr Object Storage is an S3-compatible solution that offers on-demand data storage for business assets. The solution is ideal for storing web application assets like images, audio, and videos.
Follow this guide to provision a Vultr Object Storage subscription using the Vultr Customer Portal, API, or CLI.
Navigate to Products and select Cloud Storage.
Click Object Storage.
Select a location, enter a label, and click Add.
Send a GET
request to the Get All Clusters endpoint and note the ID of your preferred region. For instance, 2
for the New Jersey region.
$ curl "https://api.vultr.com/v2/object-storage/clusters" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST
request to the Create Object Storage endpoint to create a Vultr Object Storage subscription.
$ curl "https://api.vultr.com/v2/object-storage" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"cluster_id" : 2,
"label" : "Remote-Object-Storage"
}'
Visit the Create Object Storage endpoint to view additional attributes to add to your request.
Send a GET
request to the List Object Storages endpoint to view all Vultr Object Storage subscriptions.
$ curl "https://api.vultr.com/v2/object-storage" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json"
List the available Vultr Object Storage subscription clusters and note the cluster ID of your preferred region. For instance, 2
for the New Jersey region.
$ vultr-cli object-storage list-clusters
Create a new Vultr Object Storage subscription.
$ vultr-cli object-storage create \
--cluster-id 2 \
--label Remote-Object-Storage
List all Vultr Object Storage subscriptions.
$ vultr-cli object-storage list
Run vultr-cli object-storage create --help
to view all options.