Make HTTP/HTTPS requests through the Link Unblocker service
Authorization headerPOST /requesthttps://unblocker.bringits.com
Full URL for the request: https://unblocker.bringits.com/request
Authorization header or duplicate the token in a Headers box.
| Header | Sent as | Required |
|---|---|---|
| Content-Type | application/json | Yes |
| Authorization | Bearer <access_token> | Yes |
| Parameter | Type | Description | Required |
|---|---|---|---|
| method | string | HTTP method for the target request: GET or POST (Try it shows a dropdown) | Yes |
| url | string | Target URL to request (e.g. https://tlsinfo.me/json) | Yes |
| headers | object | Optional request headers to send to the target URL. Keys are header names, values are strings (e.g. {"X-Custom": "value"}). | No |
| body | string (nullable) | Optional raw request body to send to the target (e.g. for POST/PUT). Use a string; for JSON payloads, stringify the JSON. | No |
<YOUR_ACCESS_TOKEN> with a valid JWT (tenant access token).
%{LINK_UNBLOCKER_TOKEN}) instead of hardcoding.https:// for the url parameter when possible.{"method":"GET","url":"https://tlsinfo.me/json"}. You can change method and url to hit another endpoint.https://unblocker.bringits.com (shown in the Try it panel as the server URL).Use Authorize and enter your tenant JWT in the token field only. The Authorization: Bearer … header is applied automatically; do not set that header manually in the playground.
Response from the target URL (forwarded as-is)
Raw response body from target URL