Query structured spec data via REST or MCP. Get exactly what your agent needs.
https://httpbin.org
/anything
PUT /anything
/anything/{anything}
PUT /anything/{anything}
/delay/{delay}
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| delay | path | required | int |
PUT /delay/{delay}
/put
PUT /put
/redirect-to
{
"$ref": "#/components/requestBodies/postRedirectTo"
}
PUT /redirect-to
/status/{codes}
| Name | In | Required | Type | Description |
|---|---|---|---|---|
| codes | path | required | string |
PUT /status/{codes}
RedirectsToGivenUrlPostRequest
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
},
"status_code": {
"type": "int"
}
}
}