Braintec Tools
Essential tools to identify your public IP, verify the connection to the server and check a port on your address.
Do not send passwords, session tokens, cookies, API keys or other confidential data. The application does not store results or received data; normal technical logs may still exist on the server, proxy or hosting provider.
Your IP
This is the public address detected by the server right now.
The displayed IP address is the one observed by the server and may differ from the address assigned to your device because of NAT, proxies, VPNs, CDNs or other network technologies.
Health Check
Minimal endpoint compatible with monitoring systems, load balancers and HTTP probes.
Returns HTTP 200 and plain-text ok for GET and HEAD requests. It does not check performance or external dependencies.
Recommended endpoint
https://www.braintec.it/healthz
Extended endpoint
https://www.braintec.it/api/tools/health-check.php
cURL command · macOS / Linux
curl -fsS 'https://www.braintec.it/healthz'
cURL command · Windows PowerShell
curl.exe -fsS "https://www.braintec.it/healthz"
Live Check API
Diagnostic JSON endpoint returning the observed IP, timestamp and request ID.
This endpoint only confirms that the current request receives a JSON response. It does not certify availability, performance or operational continuity.
cURL command · macOS / Linux
curl -sS -H 'Accept: application/json' 'https://www.braintec.it/api/tools/live-check.php'
cURL command · Windows PowerShell
curl.exe -sS -H "Accept: application/json" "https://www.braintec.it/api/tools/live-check.php"
JSON example
{
"tool": "live-check",
"status": "ok",
"request_id": "0123456789abcdef",
"timestamp": "2026-07-27T12:00:00+00:00",
"result": {
"observed_ip": "203.0.113.10",
"ip_version": 4
}
}
Temporary webhook
Temporary URL for testing webhooks, automations and HTTP clients. Each request is immediately returned as technical JSON.
The URL is generated only when requested, expires automatically and does not store requests or content. The body is limited to 16 KB.
Some values commonly associated with credentials are automatically redacted, but the filter cannot guarantee that every confidential value will be recognised. Use test data only and do not send passwords, tokens, session cookies, API keys or personal information.
Valid until:
Webhook URL
cURL command · macOS / Linux
cURL command · Windows PowerShell