HttpBin icon

HttpBin

Interact with HttpBin API

Actions2

Overview

This node interacts with the HttpBin API, specifically allowing users to perform HTTP DELETE requests. It is useful for testing and debugging HTTP DELETE operations by sending either query parameters or JSON data in the request body. Practical applications include simulating API DELETE calls, validating server responses to DELETE requests, or experimenting with different payload formats (query vs JSON) without needing a real backend.

Properties

Name Meaning
Type of Data Selects the format of data sent with the DELETE request: either Query Parameters or JSON Body. Options: "Query", "JSON".
Query Parameters When "Type of Data" is set to Query, this property allows specifying multiple key-value pairs as query parameters appended to the URL. Each pair consists of a Key and its corresponding Value.
JSON Object When "Type of Data" is set to JSON, this property allows specifying multiple key-value pairs that form the JSON body of the DELETE request. Each pair consists of a Key and its corresponding Value.

Output

The node outputs the response from the HttpBin API in JSON format under the json field. This typically includes details about the received request such as headers, args (query parameters), and data (body content). The output helps verify what was sent and how the server interpreted the DELETE request.

No binary data output is produced by this node.

Dependencies

  • Requires access to the public HttpBin API endpoint at https://httpbin.org.
  • No mandatory authentication is required, but an optional API key credential can be configured.
  • Network connectivity to the internet is necessary for the node to function.

Troubleshooting

  • Common Issues:
    • Incorrectly formatted query parameters or JSON body may cause unexpected responses.
    • Network issues or inability to reach https://httpbin.org will result in request failures.
  • Error Messages:
    • HTTP errors (e.g., 4xx or 5xx status codes) indicate problems with the request or server.
    • JSON parsing errors may occur if the response is not valid JSON.
  • Resolutions:
    • Verify the correctness of keys and values in query parameters or JSON body.
    • Ensure stable internet connection and that https://httpbin.org is reachable.
    • Check that the selected "Type of Data" matches the provided input fields.

Links and References

Discussion