IP Location.net API site

API V2

MAC Lookup Endpoint

Find vendor information for a MAC address prefix without an API key.

POST /v2/mac-lookup

API key

Not required.

Parameters

Name Required Description
mac Yes Body field. MAC address in colon, hyphen, or plain hexadecimal format.

Example Request

POST https://api.iplocation.net/v2/mac-lookup
Content-Type: application/json

{
  "mac": "00:00:00:12:34:56"
}

Example Response

{
    "mac": "00:00:00:12:34:56",
    "vendor": "Xerox",
    "company": "Xerox Corporation",
    "start": "000000000000",
    "end": "000000FFFFFF",
    "result": "1",
    "response_code": "200",
    "response_message": "OK"
}