Back to Tools

Azure Blob

Cloud

Azure Blob Storage for scalable object storage. Upload, download, and manage blobs.

Available Actions
uploaddownloadlistdelete
Input Schema
{
  "type": "object",
  "required": [
    "container",
    "action"
  ],
  "properties": {
    "blob": {
      "type": "string"
    },
    "action": {
      "type": "string"
    },
    "container": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "blobs": {
      "type": "array"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/azure-blob

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/azure-blob \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "upload"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.