Skip to content
For LLMsView as Markdown·

httpbin

HTTP request/response testing service. Perfect for debugging and testing API integrations.

DetailValue
CategoryTesting
Base URLhttps://httpbin.org
AuthenticationNone
Endpoints8
Connector keyhttpbin

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 — the full list is below.

Available endpoints

EndpointSummary
GET /getReturns GET data
POST /postReturns POST data
PUT /putReturns PUT data
DELETE /deleteReturns DELETE data
GET /status/{codes}Return status code
GET /headersReturns request headers
GET /ipReturns origin IP
GET /user-agentReturns user-agent string

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /get

Returns GET data

DetailValue
Operation IDtest.get
MethodGET
Path/get

Parameters

NameLocationTypeRequired
fooquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.get.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

POST /post

Returns POST data

DetailValue
Operation IDtest.post
MethodPOST
Path/post

Parameters

No parameters.

Request Body

FieldType
datastring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.post.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

PUT /put

Returns PUT data

DetailValue
Operation IDtest.put
MethodPUT
Path/put

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.put.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

DELETE /delete

Returns DELETE data

DetailValue
Operation IDtest.delete
MethodDELETE
Path/delete

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.delete.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

GET /status/{codes}

Return status code

DetailValue
Operation IDtest.status
MethodGET
Path/status/{codes}

Parameters

NameLocationTypeRequired
codespathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.status.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

GET /headers

Returns request headers

DetailValue
Operation IDtest.headers
MethodGET
Path/headers

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.headers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

GET /ip

Returns origin IP

DetailValue
Operation IDtest.ip
MethodGET
Path/ip

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.ip.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.

GET /user-agent

Returns user-agent string

DetailValue
Operation IDtest.userAgent
MethodGET
Path/user-agent

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your httpbin connection from the Connection dropdown.
  3. In the Operation dropdown, select test.userAgent.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream httpbin API reference.