analyze

URL Inspector

break down a URL into host, path, and query parameter parts

Ready
Example output:
{
  "originalInput": "http://localhost:8002/api/auth/electric/organization-users?cursor=45421480&handle=63624159-1773850411945841&live=true",
  "normalizedUrl": "http://localhost:8002/api/auth/electric/organization-users?cursor=45421480&handle=63624159-1773850411945841&live=true",
  "protocol": "http",
  "origin": "http://localhost:8002",
  "host": "localhost:8002",
  "hostname": "localhost",
  "port": "8002",
  "pathname": "/api/auth/electric/organization-users",
  "hash": "",
  "pathSegmentCount": 4,
  "queryParameterCount": 3,
  "queryParameters": {
    "cursor": "45421480",
    "handle": "63624159-1773850411945841",
    "live": "true"
  },
  "queryParametersOrdered": [
    {
      "index": 1,
      "key": "cursor",
      "value": "45421480"
    },
    {
      "index": 2,
      "key": "handle",
      "value": "63624159-1773850411945841"
    },
    {
      "index": 3,
      "key": "live",
      "value": "true"
    }
  ]
}