Find an API

Search public APIs with auth details & Postman guides

← All APIs

Labs64 NetLicensing RESTful API Test Center

netlicensing · Developer Tools

Developer Tools No Auth Free & Open developer_tools

The Labs64 NetLicensing RESTful API gives you access to NetLicensing’s core features. Authentication You authenticate to the NetLicensing API by providing your account credentials or simply use our demo account - demo:demo Find out more about Labs64 NetLicensing at netlicensing.io

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List Licenses

Return a list of all Licenses for the current Vendor

https://api.apis.guru/v2/specs/netlicensing.io/2.x/license

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/netlicensing.io/2.x/license"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/netlicensing.io/2.x/license",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/netlicensing.io/2.x/license';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/netlicensing.io/2.x/license"
	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/netlicensing.io/2.x/license")

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/netlicensing.io/2.x/license";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Licensees

Return a list of all Licensees for the current Vendor

https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensee

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensee"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensee",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensee';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensee"
	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/netlicensing.io/2.x/licensee")

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/netlicensing.io/2.x/licensee";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List License Templates

Return a list of all License Templates for the current Vendor

https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensetemplate

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensetemplate"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensetemplate",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensetemplate';

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

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

func main() {
	targetURL := "https://api.apis.guru/v2/specs/netlicensing.io/2.x/licensetemplate"
	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/netlicensing.io/2.x/licensetemplate")

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/netlicensing.io/2.x/licensetemplate";
$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 Labs64 NetLicensing RESTful API Test Center?

Labs64 NetLicensing RESTful API Test Center 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. Labs64 NetLicensing RESTful API Test Center 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 ↗