Find an API

Search public APIs with auth details & Postman guides

← All APIs

App Center Client

appcenter · Developer Tools

Developer Tools No Auth Free & Open developer_tools

Microsoft Visual Studio App Center API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET apps_list

Returns a list of apps

https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/apps?$orderBy=display_name

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/apps?$orderBy=display_name"
import requests
params = {
    "$orderBy": "display_name"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/apps",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/apps');
url.searchParams.set('$orderBy', 'display_name');

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/appcenter.ms/v0.1/v0.1/apps")
	q := baseURL.Query()
	q.Set("$orderBy", "display_name")
	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/appcenter.ms/v0.1/v0.1/apps")
uri.query = URI.encode_www_form({
  "$orderBy" => "display_name"
})

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/appcenter.ms/v0.1/v0.1/apps?" . http_build_query([
    "$orderBy" => "display_name"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET billingAggregatedInformation_getAll

Aggregated Billing Information for the requesting user and the organizations in which the user is an admin.

https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated?period=Previous&service=Test&showOriginalPlans=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated?period=Previous&service=Test&showOriginalPlans=true"
import requests
params = {
    "period": "Previous",
    "service": "Test",
    "showOriginalPlans": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated');
url.searchParams.set('period', 'Previous');
url.searchParams.set('service', 'Test');
url.searchParams.set('showOriginalPlans', '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/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated")
	q := baseURL.Query()
	q.Set("period", "Previous")
	q.Set("service", "Test")
	q.Set("showOriginalPlans", "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/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated")
uri.query = URI.encode_www_form({
  "period" => "Previous",
  "service" => "Test",
  "showOriginalPlans" => "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/appcenter.ms/v0.1/v0.1/billing/allAccountsAggregated?" . http_build_query([
    "period" => "Previous",
    "service" => "Test",
    "showOriginalPlans" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET legacyCodePushAcquisition_updateCheck

Check for updates

https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/legacy/updateCheck?label=example&appVersion=example&isCompanion=example&packageHash=example&deploymentKey=example&clientUniqueId=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/legacy/updateCheck?label=example&appVersion=example&isCompanion=example&packageHash=example&deploymentKey=example&clientUniqueId=example"
import requests
params = {
    "label": "example",
    "appVersion": "example",
    "isCompanion": "example",
    "packageHash": "example",
    "deploymentKey": "example",
    "clientUniqueId": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/legacy/updateCheck",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/appcenter.ms/v0.1/v0.1/legacy/updateCheck');
url.searchParams.set('label', 'example');
url.searchParams.set('appVersion', 'example');
url.searchParams.set('isCompanion', 'example');
url.searchParams.set('packageHash', 'example');
url.searchParams.set('deploymentKey', 'example');
url.searchParams.set('clientUniqueId', 'example');

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/appcenter.ms/v0.1/v0.1/legacy/updateCheck")
	q := baseURL.Query()
	q.Set("label", "example")
	q.Set("appVersion", "example")
	q.Set("isCompanion", "example")
	q.Set("packageHash", "example")
	q.Set("deploymentKey", "example")
	q.Set("clientUniqueId", "example")
	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/appcenter.ms/v0.1/v0.1/legacy/updateCheck")
uri.query = URI.encode_www_form({
  "label" => "example",
  "appVersion" => "example",
  "isCompanion" => "example",
  "packageHash" => "example",
  "deploymentKey" => "example",
  "clientUniqueId" => "example"
})

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/appcenter.ms/v0.1/v0.1/legacy/updateCheck?" . http_build_query([
    "label" => "example",
    "appVersion" => "example",
    "isCompanion" => "example",
    "packageHash" => "example",
    "deploymentKey" => "example",
    "clientUniqueId" => "example"
]);
$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 App Center Client?

App Center Client is a Developer Tools API. Developers commonly use developer tools APIs for:

  • automating code review and quality checks
  • integrating CI/CD pipelines and build systems
  • managing feature flags and A/B tests
  • monitoring errors and application performance
  • generating and validating test data

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

New to APIs? Read our beginner's guide

Open documentation ↗