https://github.com/ewpratten/oui_api
A simple REST API for looking up OUI vendor information
https://github.com/ewpratten/oui_api
ieee-oui-database oui public-api rest-api
Last synced: 11 months ago
JSON representation
A simple REST API for looking up OUI vendor information
- Host: GitHub
- URL: https://github.com/ewpratten/oui_api
- Owner: ewpratten
- License: gpl-3.0
- Created: 2020-11-24T18:41:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T20:03:58.000Z (over 5 years ago)
- Last Synced: 2025-02-27T00:40:15.113Z (over 1 year ago)
- Topics: ieee-oui-database, oui, public-api, rest-api
- Language: Python
- Homepage: https://oui.apis.retrylife.ca/lookup/000C87
- Size: 19.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OUI-API
OUI-API is a very simple REST api for querying company information off their [Organizationally Unique Identifier](https://en.wikipedia.org/wiki/Organizationally_unique_identifier).
## Usage
Send a request to `https://oui.apis.retrylife.ca/lookup/` to get information on an organization. Example:
```js
// https://oui.apis.retrylife.ca/lookup/000C87
{
"success": true,
"vendor":{
"address": "4555 Great America Pkwy\n Santa Clara CA 95054\n US",
"company_id": "000C87",
"organization": "AMD",
"oui": "00-0C-87"
}
}
```