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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/microsoft-azure-file-storage-shares-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
openapi: 3.2.0
info:
title: Azure File Storage REST Shares API
description: Azure File Storage REST API enables clients to manage shares, directories, and files within a storage account using SMB-like operations over HTTP.
version: '2024-05-04'
servers:
- url: https://{account}.file.core.windows.net
variables:
account:
default: myaccount
description: Storage account name
security:
- sharedKey: []
- sasToken: []
tags:
- name: Shares
description: Shares operations
paths:
/:
get:
operationId: listContainers
summary: Azure File Storage REST API List
description: Lists shares in the account.
tags:
- Shares
parameters:
- name: comp
in: query
required: true
schema:
type: string
enum:
- list
responses:
'200':
description: Shares listing
content:
application/xml:
schema:
type: object
/{container}:
parameters:
- name: container
in: path
required: true
schema:
type: string
put:
operationId: createContainer
summary: Azure File Storage REST API Create
description: Creates a new share.
tags:
- Shares
responses:
'201':
description: Created
get:
operationId: getContainerProperties
summary: Azure File Storage REST API Get properties
description: Returns the properties of the share.
tags:
- Shares
responses:
'200':
description: Properties
delete:
operationId: deleteContainer
summary: Azure File Storage REST API Delete
description: Deletes the share.
tags:
- Shares
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 File Storage REST API Put item
description: Creates or updates a resource at the path.
tags:
- Shares
requestBody:
content:
application/octet-stream:
schema:
type: string
format: binary
responses:
'201':
description: Created
get:
operationId: getItem
summary: Azure File Storage REST API Get item
description: Retrieves a resource at the path.
tags:
- Shares
responses:
'200':
description: OK
delete:
operationId: deleteItem
summary: Azure File Storage REST API Delete item
description: Deletes a resource at the path.
tags:
- Shares
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 File Storage REST API Documentation
url: https://learn.microsoft.com/en-us/rest/api/storageservices/file-service-rest-api
x-generated-from: https://learn.microsoft.com/en-us/rest/api/storageservices/file-service-rest-api
x-generated-by: claude-crawl-2026-05-08