{% extends 'layouts/api-accordion-child'     %}
{% set id     = "browse"                     %}
{% set title  = "/api/browse/&lt;vendor&gt;" %}
{% set method = "GET"                        %}
{% set args   = [('vendor', "Vendor name", "microsoft")] %}

{% block desc %}
Returns a list of vendors or products of a specific vendor. <br />
This API call can be used in two ways; With or without the vendor. <br />
When the link is called without a vendor, it will return a list of possible vendors. <br />
When the link is called with a vendor, it enumerates the products for said vendor.
{% endblock %}

{% block output %}
{
  "product": null,
  "vendor": [
    "%240.99_kindle_books_project",
    "1024cms",
    "11in1",
    "129zou",
    "12net",
    "133",
    "163",
    "1800contacts",
    "1kxun",
    "2g_live_tv_project",
  ...


{
  "vendor": "microsoft"
  "product": [
    ".net_framework",
    ".net_windows_server",
    "access",
    "access_multilingual_user_interface_pack",
    "active_directory",
    "active_directory_application_mode",
    "active_directory_federation_services",
  ...
{% endblock %}
