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