BatchService
windows · Cloud
A client for issuing REST requests to the Azure Batch service.
Authentication
Sample Requests
This operation returns only applications and versions that are available for use on compute nodes; that is, that can be used in an application package reference. For administrator information about applications and versions that are not yet available to compute nodes, use the Azure portal or the Azu
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/applications?timeout=30&maxresults=1000&api-version=v1"
import requests
params = {
"timeout": "30",
"maxresults": "1000",
"api-version": "v1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/applications",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/applications');
url.searchParams.set('timeout', '30');
url.searchParams.set('maxresults', '1000');
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/windows.net/batch-BatchService/2018-08-01.7.0/applications")
q := baseURL.Query()
q.Set("timeout", "30")
q.Set("maxresults", "1000")
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/windows.net/batch-BatchService/2018-08-01.7.0/applications")
uri.query = URI.encode_www_form({
"timeout" => "30",
"maxresults" => "1000",
"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/windows.net/batch-BatchService/2018-08-01.7.0/applications?" . http_build_query([
"timeout" => "30",
"maxresults" => "1000",
"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));Lists all of the certificates that have been added to the specified account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/certificates?$filter=example&$select=example&timeout=30&maxresults=1000&api-version=v1"
import requests
params = {
"$filter": "example",
"$select": "example",
"timeout": "30",
"maxresults": "1000",
"api-version": "v1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/certificates",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/certificates');
url.searchParams.set('$filter', 'example');
url.searchParams.set('$select', 'example');
url.searchParams.set('timeout', '30');
url.searchParams.set('maxresults', '1000');
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/windows.net/batch-BatchService/2018-08-01.7.0/certificates")
q := baseURL.Query()
q.Set("$filter", "example")
q.Set("$select", "example")
q.Set("timeout", "30")
q.Set("maxresults", "1000")
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/windows.net/batch-BatchService/2018-08-01.7.0/certificates")
uri.query = URI.encode_www_form({
"$filter" => "example",
"$select" => "example",
"timeout" => "30",
"maxresults" => "1000",
"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/windows.net/batch-BatchService/2018-08-01.7.0/certificates?" . http_build_query([
"$filter" => "example",
"$select" => "example",
"timeout" => "30",
"maxresults" => "1000",
"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));Lists all of the jobs in the specified account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/jobs?$expand=example&$filter=example&$select=example&timeout=30&maxresults=1000&api-version=v1"
import requests
params = {
"$expand": "example",
"$filter": "example",
"$select": "example",
"timeout": "30",
"maxresults": "1000",
"api-version": "v1"
}
response = requests.get(
"https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/jobs",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/windows.net/batch-BatchService/2018-08-01.7.0/jobs');
url.searchParams.set('$expand', 'example');
url.searchParams.set('$filter', 'example');
url.searchParams.set('$select', 'example');
url.searchParams.set('timeout', '30');
url.searchParams.set('maxresults', '1000');
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/windows.net/batch-BatchService/2018-08-01.7.0/jobs")
q := baseURL.Query()
q.Set("$expand", "example")
q.Set("$filter", "example")
q.Set("$select", "example")
q.Set("timeout", "30")
q.Set("maxresults", "1000")
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/windows.net/batch-BatchService/2018-08-01.7.0/jobs")
uri.query = URI.encode_www_form({
"$expand" => "example",
"$filter" => "example",
"$select" => "example",
"timeout" => "30",
"maxresults" => "1000",
"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/windows.net/batch-BatchService/2018-08-01.7.0/jobs?" . http_build_query([
"$expand" => "example",
"$filter" => "example",
"$select" => "example",
"timeout" => "30",
"maxresults" => "1000",
"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));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with BatchService?
BatchService 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. BatchService is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide