License Manager API
vtex · Company
## Welcome! The License Manager API allows you to create users, modify their names and emails, as well as add and remove roles from users. ### ATTRIBUTES |Attribute name | Description | |:------------|--------------| |accountName | Account name in VTEX License Manager | |environment | Environment on which you want to run the query e.g. vtexcommercestable | |userId | Unique user identification string | |roleId | Integer that represents a role, can be looked up on the Licen
Authentication
Sample Requests
Retrieves information from an account, such as company and sponsor user details, stores, and appTokens. This endpoint only accepts requests from the host list designated for that store. If you want to try this request from this portal, be sure to add it to the list. Learn how to add hosts to the
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account'; 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/vtex.local/License-Manager-API/1.0/api/vlm/account"
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/vtex.local/License-Manager-API/1.0/api/vlm/account")
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/vtex.local/License-Manager-API/1.0/api/vlm/account";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets all application keys from an account.
Hover any highlighted part to learn what it does
| Content-Type | application/json |
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys" \ -H "Content-Type: application/json"
import requests
headers = {
"Content-Type": "application/json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys';
const response = await fetch(url, {
headers: {
'Content-Type': 'application/json'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Content-Type", "application/json")
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/vtex.local/License-Manager-API/1.0/api/vlm/appkeys")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Content-Type"] = "application/json"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Content-Type: application/json"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Gets the stores and respective hosts of the account
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account/stores"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account/stores",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account/stores'; 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/vtex.local/License-Manager-API/1.0/api/vlm/account/stores"
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/vtex.local/License-Manager-API/1.0/api/vlm/account/stores")
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/vtex.local/License-Manager-API/1.0/api/vlm/account/stores";
$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 License Manager API?
License Manager API is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. License Manager API 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?