Httpbin
Connector for the httpbin API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- Base URL:
https://httpbin.org - Auth:
bearer(pass your key via theapiKeyinput)
Operations
get_absolute_redirect_n— GET /absolute-redirect/{n} — Absolutely 302 Redirects n times.get_anything— GET /anything — Returns anything passed in request data.get_anything_anything— GET /anything/{anything} — Returns anything passed in request data.get_base64_value— GET /base64/{value} — Decodes base64url-encoded string.get_basic_auth_user_passwd— GET /basic-auth/{user}/{passwd} — Prompts the user for authorization using HTTP Basic Auth.get_bearer— GET /bearer — Prompts the user for authorization using bearer authentication.
Inputs
apiKey— your httpbin API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_absolute_redirect_n
apiKey: <your key>