--- title: 'httpbin' description: 'HTTP request/response testing service. Perfect for debugging and testing API integrations.' --- # httpbin HTTP request/response testing service. Perfect for debugging and testing API integrations. | Detail | Value | |---|---| | Category | Testing | | Base URL | `https://httpbin.org` | | Authentication | None | | Endpoints | 8 | | Connector key | `httpbin` | ## Using httpbin in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **httpbin** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /get](./get_get_test_get) | Returns GET data | | [POST /post](./post_post_test_post) | Returns POST data | | [PUT /put](./put_put_test_put) | Returns PUT data | | [DELETE /delete](./delete_delete_test_delete) | Returns DELETE data | | [GET /status/{codes}](./get_status_codes_test_status) | Return status code | | [GET /headers](./get_headers_test_headers) | Returns request headers | | [GET /ip](./get_ip_test_ip) | Returns origin IP | | [GET /user-agent](./get_user_agent_test_useragent) | Returns user-agent string | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.