ByteScope

USB Device Identifier

Type a VID/PID and get the names behind it, or plug a device in and read every descriptor the browser will show you.

Looks ids up in your browser — nothing about your devices is sent anywhere.

Look up a VID / PID

No device needed. Paste an id in any of the shapes you already have it in and get the vendor and product names.

Also accepts a Windows hardware id such as USB\VID_1D6B&PID_0002. Short ids are zero-padded.

Search vendors by name

Pick a vendor to drop its id into the box above.

Identify a plugged-in device

Reads the descriptors the browser already has. The device is never opened, claimed or written to.

Browser support

Only the device half needs WebUSB. What runs where

FeatureChromeEdgeFirefoxSafari
VID/PID lookup and vendor searchPure table lookup — no device, no permission prompt, every browser.SupportedSupportedSupportedSupported
navigator.usb device pickerChromium desktop browsers only; Firefox and Safari ship no WebUSB.SupportedSupportedNot supportedNot supported
Reading configuration descriptorsRead straight from the permitted device, without opening it.SupportedSupportedNot supportedNot supported
Connecting a device on AndroidWe have not tested this on Android. Firefox ships no WebUSB on any platform, and Safari does not exist on Android.UntestedUntestedNot supportedNot applicable
Keyboards, webcams, storage, smart cardsChromium hides these protected classes from the picker on every OS, so they can only be looked up by id.Not supportedNot supportedNot applicableNot applicable

Detected browser capabilities

  • navigator.usb
  • Secure Context (HTTPS)

About this tool

Every USB device announces itself with two 16-bit numbers: a vendor ID assigned to whoever makes it, and a product ID that vendor picks for the model. Those two numbers are what your operating system matches against to load a driver, what lsusb, Device Manager and dmesg print at you, and what a forum thread will ask for first. This page turns them back into names — either by hand, with nothing plugged in, or by reading a device you connect.

Look up a VID and PID by hand

Type or paste an id in whatever shape you already have it: 1d6b on its own, 0x1d6b, the 1d6b:0002 pair that lsusb prints, or the USB\VID_1D6B&PID_0002 hardware id Windows Device Manager shows on the Details tab. The vendor name comes back immediately, and the product name too when the pair is known. If you only remember the company, search by name instead — type logitech or realtek and pick the vendor from the list, along with how many of its products the database knows. This half needs no device, no permission prompt and no particular browser: it is a table lookup, and it works in Firefox and Safari exactly as it does in Chrome.

Identify a device that's plugged in

In a Chromium browser, click Connect and pick a device from the browser's picker; anything you have already permitted shows up on its own. For each one the page lists the vendor and product ids with their resolved names, the device class, subclass and protocol, the USB specification version the device reports, its release number, and whatever manufacturer, product and serial strings it chooses to expose. Below that come the configuration descriptors: every interface, its alternate settings with their own class triplet, and each endpoint's number, direction, transfer type and packet size — which is how you find out that the thing you thought was a plain serial adapter also claims a HID interface.

Where the names come from, and what leaves your browser

The name data is the usb.ids database from the Linux USB project at linux-usb.org — the same list lsusb reads, maintained by volunteers who take submissions from anyone. The exact version shipped here is printed next to the lookup box. Refreshing it is a manual step on our side, so a device released last month may well be a blank: an id with no name means nobody has submitted it yet, not that the device is fake. The file is fetched from this site the first time you look something up, parsed in the tab, and everything after that is local — no id you type and nothing about any device you connect is ever sent anywhere, and the site's analytics record only that the tool was used.

Frequently asked questions

What are a USB VID and PID?

The vendor ID is a 16-bit number the USB Implementers Forum assigns to a company; the product ID is a 16-bit number that company assigns to a specific model. Together they are how a host identifies what it is talking to before any driver is loaded. They are written as four hex digits each, and the 1d6b:0002 form you see everywhere is simply VID:PID.

What can I paste into the lookup box?

A bare id (1d6b), a 0x-prefixed one (0x1d6b), a VID:PID pair in either style, the same pair separated by a space, or a full Windows hardware id such as USB\VID_1D6B&PID_0002. Short ids are zero-padded, so 9 is read as 0009. Anything that is not a valid hex id is rejected outright rather than silently truncated.

Why is my device not in the list, or not in the picker?

Reading a plugged-in device uses WebUSB, which only Chromium browsers implement — there is no picker at all in Firefox or Safari, and the manual lookup above is the half that works there. Even in Chrome, devices whose class the browser protects (keyboards, mice, webcams, mass storage, smart cards) are hidden from the picker, and a device already claimed exclusively by a driver may not appear either. None of this affects the lookup half.

Does connecting here open, claim or change my device?

No. The page reads only the descriptors the browser hands over when you grant permission — it never calls open(), never claims an interface and never sends a transfer. Unplugging is enough to undo everything; you can also revoke the permission from the icon in the address bar.

Is anything uploaded?

No. The usb.ids file is downloaded from this site to your browser, which is the only network request the tool makes; the lookups themselves run against that copy in your tab. Ids you type, device names, and serial numbers never leave the page.

The vendor name looks wrong or out of date — why?

Because usb.ids is a community list, not a registry export. Vendors get bought, rename themselves and reuse ids, and nobody is obliged to file an update — so an id can carry the name of a company that no longer exists, and a genuinely new product can be missing entirely. Treat a name as a strong hint, and the numbers as the fact.