Skip to main content
DevTools24

クエリ文字列ビルダー

URLクエリ文字列を視覚的に構築します。自動URLエンコード付きでパラメータを追加、編集、削除。

=
=
https://example.com/api?page=1&limit=10
Tip: Paste a full URL in the Base URL field and click "Parse URL" to extract existing parameters.

クエリ文字列 - 技術的な詳細

クエリ文字列は&で区切られたkey=valueペアを使用してURLでデータを渡します。特殊文字はURLエンコードする必要があります。クエリ文字列はURLの?の後から始まります。

コマンドラインでの代替方法

// Query string format\nhttps://api.example.com/search?q=hello&page=1&sort=asc\n\n// URL encoding\nspace → %20 or +\n& → %26