Find an API

Search public APIs with auth details & Postman guides

← All APIs

WebSite Management Client

azure · Cloud

Cloud No Auth Free & Open cloud Sandbox

Use these APIs to manage Azure Websites resources through the Azure Resource Manager. All task operations conform to the HTTP/1.1 protocol specification and each operation returns an x-ms-request-id header that can be used to obtain information about the request. You must make sure that requests made to these resources are secure. For more information, see https://msdn.microsoft.com/en-us/library/azure/dn790557.aspx.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Gets the source controls available for Azure websites

Gets the source controls available for Azure websites

https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols?api-version=v1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols?api-version=v1"
import requests
params = {
    "api-version": "v1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols');
url.searchParams.set('api-version', 'v1');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols")
	q := baseURL.Query()
	q.Set("api-version", "v1")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols")
uri.query = URI.encode_www_form({
  "api-version" => "v1"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/sourcecontrols?" . http_build_query([
    "api-version" => "v1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Gets publishing user

Gets publishing user

https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web?api-version=v1

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web?api-version=v1"
import requests
params = {
    "api-version": "v1"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web');
url.searchParams.set('api-version', 'v1');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web")
	q := baseURL.Query()
	q.Set("api-version", "v1")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web")
uri.query = URI.encode_www_form({
  "api-version" => "v1"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/providers/Microsoft.Web/publishingUsers/web?" . http_build_query([
    "api-version" => "v1"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Gets list of available geo regions

Gets list of available geo regions

https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions?sku=example&api-version=v1&linuxWorkersEnabled=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions?sku=example&api-version=v1&linuxWorkersEnabled=true"
import requests
params = {
    "sku": "example",
    "api-version": "v1",
    "linuxWorkersEnabled": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions');
url.searchParams.set('sku', 'example');
url.searchParams.set('api-version', 'v1');
url.searchParams.set('linuxWorkersEnabled', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions")
	q := baseURL.Query()
	q.Set("sku", "example")
	q.Set("api-version", "v1")
	q.Set("linuxWorkersEnabled", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions")
uri.query = URI.encode_www_form({
  "sku" => "example",
  "api-version" => "v1",
  "linuxWorkersEnabled" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/azure.com/web-service/2015-08-01/subscriptions/{subscriptionId}/providers/Microsoft.Web/geoRegions?" . http_build_query([
    "sku" => "example",
    "api-version" => "v1",
    "linuxWorkersEnabled" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with WebSite Management Client?

WebSite Management Client is a Cloud API. Developers commonly use cloud APIs for:

  • provisioning and managing cloud infrastructure
  • automating deployments and container orchestration
  • monitoring uptime and performance metrics
  • managing storage buckets and databases
  • setting up auto-scaling and load balancing

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. WebSite Management Client is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗