--- title: 'Azure Blob Storage' description: 'Manage containers and blobs in Azure Blob Storage.' --- # Azure Blob Storage Manage containers and blobs in Azure Blob Storage. | Detail | Value | |---|---| | Category | Cloud & Infra | | Base URL | `https://{account_name}.blob.core.windows.net` | | Authentication | API Key | | Endpoints | 8 | | Connector key | `azure-blob` | ## Using Azure Blob Storage in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Azure Blob Storage** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /](./get_cloud_listcontainers) | List containers | | [PUT /{container}](./put_container_cloud_createcontainer) | Create a container | | [DELETE /{container}](./delete_container_cloud_deletecontainer) | Delete a container | | [GET /{container}](./get_container_cloud_listblobs) | List blobs in a container | | [GET /{container}/{blob}](./get_container_blob_cloud_getblob) | Download a blob | | [PUT /{container}/{blob}](./put_container_blob_cloud_putblob) | Upload a blob | | [DELETE /{container}/{blob}](./delete_container_blob_cloud_deleteblob) | Delete a blob | | [HEAD /{container}/{blob}](./head_container_blob_cloud_getblobproperties) | Get blob properties | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.