API reference

MAC Address Lookup API

Look up manufacturer information for a MAC address. Use this reference to choose an operation and integrate its documented response contract.

Operations

GET /v1/mac View API reference
GET /v1/mac/info View API reference

GET /v1/mac

Operation: getMacInfo Credits and authentication: 1 Authentication required
GET /v1/mac

Query Parameters

Parameter Type required
mac string required

Response Fields

Field Type
mac string
input string
type string
oui string
device_id string
flags object
flags.multicast boolean
flags.locally_administered boolean
flags.broadcast boolean
vendor object
vendor.name string | null
vendor.found boolean
vendor.organization string | null
vendor.address string | null
vendor.country string | null
vendor.device_type string | null
vendor.source string
vendor.cached boolean
vendor.cache_age_s integer | null
vendor.checked_at string
meta object

Example Request

curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/mac?mac=00%3A1A%3A2B%3A3C%3A4D%3A5E"

Example Response

{
  "mac": "string",
  "input": "string",
  "type": "eui-48",
  "oui": "string",
  "device_id": "string",
  "flags": {
    "multicast": true,
    "locally_administered": true,
    "broadcast": true
  },
  "vendor": {
    "name": "string",
    "found": true,
    "organization": "string",
    "address": "string",
    "country": "string",
    "device_type": "string",
    "source": "string",
    "cached": true,
    "cache_age_s": 1,
    "checked_at": "2026-04-15T12:00:00Z"
  },
  "meta": {}
}

GET /v1/mac/info

Operation: getMacLookupInfo Credits and authentication: Free Authentication required
GET /v1/mac/info

Response Fields

Field Type
endpoint string
description string
parameters object
example_request string
example_response object

Example Request

curl -H "X-API-Key: $DOMSCAN_API_KEY" "https://domscan.net/v1/mac/info"

Example Response

{
  "endpoint": "/v1/mac",
  "description": "Lookup MAC address metadata and vendor information.",
  "parameters": {
    "mac": {
      "type": "string",
      "required": true,
      "description": "MAC address string in any common format",
      "example": "44:38:39:ff:ef:57"
    }
  },
  "example_request": "/v1/mac?mac=44:38:39:ff:ef:57",
  "example_response": {
    "mac": "44:38:39:FF:EF:57",
    "type": "eui-48",
    "oui": "44:38:39",
    "device_id": "FF:EF:57",
    "flags": {
      "multicast": false,
      "locally_administered": false,
      "broadcast": false
    },
    "vendor": {
      "name": "Cumulus Networks, Inc",
      "found": true,
      "source": "cache",
      "cached": true
    }
  }
}

Reference resources