Search by port number or service name (try 443 or "database"). Runs entirely in your browser — the full list is embedded on the page.
Look up a single port:
curl -sS https://devops.majbase.com/port-lookup/api/443
Returns a JSON array (a port can have more than one entry, e.g. TCP and UDP variants): [{"port": 443, "protocol": "TCP", "name": "HTTPS", "description": "..."}], or a 404 with {"error": "..."} if the port isn't in this tool's list.
List every port, or filter by keyword:
curl -sS https://devops.majbase.com/port-lookup/api
curl -sS "https://devops.majbase.com/port-lookup/api?q=database"
Returns a JSON array of matching entries in the same shape as above.