Azure Blob Storage

Scalable and cost-effective object storage for the cloud

Azure Blob Storage Documentation

Azure Blob Storage is Microsoft's object storage solution for the cloud. It is designed to store massive amounts of unstructured data, such as text or binary data. Blob storage is optimized for storing files that are accessed infrequently, or files that need to be accessed by a large number of clients.

Key Features:

Storage Tiers:

Blob storage offers different access tiers to optimize costs:

Use Cases:

Getting Started:

To start using Azure Blob Storage, you need an Azure subscription. You can create a storage account within your subscription, and then create containers within that storage account to hold your blobs.

Create a Storage Account Explore Blob Storage Concepts

API Reference Highlights

Azure Blob Storage provides REST APIs and SDKs for programmatic access. Here are some common operations:

Operation Description HTTP Method
Put Blob Uploads a blob to the specified container. PUT
Get Blob Downloads a blob from the specified container. GET
Delete Blob Deletes a blob from the specified container. DELETE
List Blobs Lists all blobs within a specified container. GET
Create Container Creates a new container within a storage account. PUT

Further Reading: