Find an API

Search public APIs with auth details & Postman guides

← All APIs

License Manager API

vtex · Company

Company No Auth Free & Open API

## 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

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get information about account

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

https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/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"
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));
GET Get appKeys from account

Gets all application keys from an account.

https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/appkeys

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
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));
GET Get Stores

Gets the stores and respective hosts of the account

https://api.apis.guru/v2/specs/vtex.local/License-Manager-API/1.0/api/vlm/account/stores

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

Get Postman ↗
  1. 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?

Open documentation ↗