Utilities

Interactive tools, converters, and generators

Language:

#Http29

Add Query Parameter

Add or update a query parameter in a URL string.

Bearer Token Authentication

Make an authenticated HTTP request using Bearer token for JWT or OAuth.

CORS Cross-Origin Request

Make a cross-origin HTTP request with CORS headers inspection.

Delayed Response (Test Timeouts)

Request a delayed response to test timeout handling with AbortController.

Download Binary File

Download an image or binary file and convert it to a blob or base64.

Fetch JSON from API

Make a GET request and parse the JSON response.

Fetch with Timeout

Make HTTP requests with a configurable timeout using AbortController.

Get Client IP Address

Get your public IP address and request origin information.

Get Domain from URL

Extract the domain name (hostname) from a URL.

Get File Extension

Extract the file extension from a filename or URL path.

Get My IP Address

Get your public IP address using the ipify API.

Get Query Parameter

Get a specific query parameter from a URL.

Handle Cookies

Set cookies via response and send them back in subsequent requests.

Handle Gzip Compressed Response

Fetch gzip-compressed data that is automatically decompressed by the browser.

Handle Redirects

Control redirect behavior and track the redirect chain.

HTTP Basic Authentication

Make an authenticated HTTP request using Basic Auth credentials.

Inspect Response Headers

Fetch a URL and inspect all response headers including custom ones.

Is Absolute URL

Check if a URL is absolute (has protocol).

Join URL Paths

Join URL path segments properly handling slashes.

Parse URL

Parse a URL into its components including protocol, host, path, query string, and hash.

Parse User Agent

Extract browser, OS, and device information from a user agent string

POST JSON Data

Send a JSON payload to an API endpoint using POST.

PUT, PATCH, DELETE Requests

Make REST API update and delete requests using PUT, PATCH, and DELETE.

Remove Query Parameter

Remove a specific query parameter from a URL string.

Send Custom Headers

Send an HTTP request with custom headers and inspect them in the response.

Send Multipart Form Data

Upload files and form fields using multipart/form-data encoding.

Send URL-Encoded Form

Send form data as application/x-www-form-urlencoded using URLSearchParams.

Stream Response Body

Read response body as a stream for large files or real-time data.

Test HTTP Status Codes

Request specific HTTP status codes to test error handling.

#System3

Common Cron Schedules

Generate cron expressions for common scheduling patterns like daily, weekly, or hourly.

Explain Cron Expression

Break down a cron expression into human-readable field descriptions.

Validate Cron Expression

Check if a cron expression has valid format with 5 fields.