URL पार्सर

प्रोटोकॉल, होस्ट, पथ, क्वेरी पॅराम्स आणि हॅशमध्ये URLs खंडित करा.

विनामूल्य ऑनलाइन URL पार्सर

वाचनीय भागांमध्ये खंडित करण्यासाठी कोणतेही URL पेस्ट करा: मूळ, होस्टनाव, पोर्ट, पथनाव, क्वेरी स्ट्रिंग आणि खंड. तुम्ही कॉपी करू शकता अशा टेबलमध्ये क्वेरी पॅरामीटर्स दिसतात.

डीबगिंग रीडायरेक्ट, API एंडपॉइंट्स, OAuth कॉलबॅक आणि ट्रॅकिंग लिंक्ससाठी उपयुक्त - मॅन्युअल स्प्लिटिंग आवश्यक नाही.

Frequently Asked Questions

What URL parts are shown?
Dokall breaks a URL into protocol (https), hostname (example.com), port, pathname (/path/to/page), query string (?key=value), and fragment (#section). Query parameters appear in a separate table.
How do I read query parameters?
The query string section lists each key-value pair from the ? portion of the URL. For example, ?search=hello&page=2 shows search=hello and page=2 as separate rows you can copy.
What is the fragment (#) part?
The fragment (hash) identifies a section within the page. It is not sent to the server - the browser handles it client-side. https://example.com/docs#installation sends a request for /docs; the browser scrolls to #installation after loading.
Can I parse malformed URLs?
The parser uses the browser URL API. URLs missing a protocol may fail - try adding https://. Unusual formats like mailto: and ftp: are supported if they follow standard URL syntax.
Is the URL sent to a server?
No. Parsing runs entirely in your browser using the URL constructor. The URL is never transmitted to Dokall.