{"api":"URL Parser API v1","description":"Parse, build, and manipulate URLs","pricing":{"basic":{"price":"Free","requests":"500/month","rateLimit":"5/min"},"pro":{"price":"$9.99/mo","requests":"20K/month","rateLimit":"30/min"},"ultra":{"price":"$49.99/mo","requests":"200K/month","rateLimit":"150/min"},"mega":{"price":"$199/mo","requests":"2M/month","rateLimit":"500/min"}},"endpoints":[{"method":"POST","path":"/v1/parse","body":"{ url }","note":"Parse URL into components"},{"method":"POST","path":"/v1/build","body":"{ hostname, pathname?, searchParams?, ... }","note":"Build URL from parts"},{"method":"POST","path":"/v1/normalize","body":"{ url, options? }","note":"Normalize/clean URL"},{"method":"POST","path":"/v1/encode","body":"{ text }","note":"URL encode text"},{"method":"POST","path":"/v1/decode","body":"{ text }","note":"URL decode text"},{"method":"POST","path":"/v1/extract","body":"{ text }","note":"Extract URLs from text"}],"examples":["POST /v1/parse { \"url\": \"https://example.com/path?foo=bar#section\" }","POST /v1/build { \"hostname\": \"example.com\", \"pathname\": \"/api\", \"searchParams\": { \"key\": \"value\" } }","POST /v1/normalize { \"url\": \"HTTP://WWW.Example.com/path/\", \"options\": { \"forceHttps\": true, \"removeWww\": true } }"]}