Azure Data Lake Storage Filesystems API

Filesystems operations

Operations 7

GET / Azure Data Lake Storage Gen2 REST API List #
PUT /{container} Azure Data Lake Storage Gen2 REST API Create #
GET /{container} Azure Data Lake Storage Gen2 REST API Get properties #
DELETE /{container} Azure Data Lake Storage Gen2 REST API Delete #
PUT /{container}/{path} Azure Data Lake Storage Gen2 REST API Put item #
GET /{container}/{path} Azure Data Lake Storage Gen2 REST API Get item #
DELETE /{container}/{path} Azure Data Lake Storage Gen2 REST API Delete item #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/microsoft-azure-data-lake-filesystems-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

microsoft-azure-data-lake-filesystems-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Azure Data Lake Storage Gen2 REST Filesystems API
  description: Azure Data Lake Storage Gen2 REST API supports filesystem and path operations on hierarchical namespace storage accounts. Authentication is via Shared Key, SAS, or Azure AD bearer tokens.
  version: '2024-05-04'
servers:
- url: https://{account}.dfs.core.windows.net
  variables:
    account:
      default: myaccount
      description: Storage account name
security:
- sharedKey: []
- sasToken: []
tags:
- name: Filesystems
  description: Filesystems operations
paths:
  /:
    get:
      operationId: listContainers
      summary: Azure Data Lake Storage Gen2 REST API List
      description: Lists filesystems in the account.
      tags:
      - Filesystems
      parameters:
      - name: comp
        in: query
        required: true
        schema:
          type: string
          enum:
          - list
      responses:
        '200':
          description: Filesystems listing
          content:
            application/xml:
              schema:
                type: object
  /{container}:
    parameters:
    - name: container
      in: path
      required: true
      schema:
        type: string
    put:
      operationId: createContainer
      summary: Azure Data Lake Storage Gen2 REST API Create
      description: Creates a new filesystem.
      tags:
      - Filesystems
      responses:
        '201':
          description: Created
    get:
      operationId: getContainerProperties
      summary: Azure Data Lake Storage Gen2 REST API Get properties
      description: Returns the properties of the filesystem.
      tags:
      - Filesystems
      responses:
        '200':
          description: Properties
    delete:
      operationId: deleteContainer
      summary: Azure Data Lake Storage Gen2 REST API Delete
      description: Deletes the filesystem.
      tags:
      - Filesystems
      responses:
        '202':
          description: Deletion accepted
  /{container}/{path}:
    parameters:
    - name: container
      in: path
      required: true
      schema:
        type: string
    - name: path
      in: path
      required: true
      schema:
        type: string
    put:
      operationId: putItem
      summary: Azure Data Lake Storage Gen2 REST API Put item
      description: Creates or updates a resource at the path.
      tags:
      - Filesystems
      requestBody:
        content:
          application/octet-stream:
            schema:
              type: string
              format: binary
      responses:
        '201':
          description: Created
    get:
      operationId: getItem
      summary: Azure Data Lake Storage Gen2 REST API Get item
      description: Retrieves a resource at the path.
      tags:
      - Filesystems
      responses:
        '200':
          description: OK
    delete:
      operationId: deleteItem
      summary: Azure Data Lake Storage Gen2 REST API Delete item
      description: Deletes a resource at the path.
      tags:
      - Filesystems
      responses:
        '202':
          description: Deletion accepted
components:
  securitySchemes:
    sharedKey:
      type: apiKey
      in: header
      name: Authorization
      description: Shared Key authentication
    sasToken:
      type: apiKey
      in: query
      name: sig
      description: Shared Access Signature token
externalDocs:
  description: Azure Data Lake Storage Gen2 REST API Documentation
  url: https://learn.microsoft.com/en-us/rest/api/storageservices/data-lake-storage-gen2
x-generated-from: https://learn.microsoft.com/en-us/rest/api/storageservices/data-lake-storage-gen2
x-generated-by: claude-crawl-2026-05-08