무료 온라인 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.