| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "openapi": "3.0.0",
- "info": {
- "contact": {
- "email": "me@kennethreitz.org",
- "responsibleDeveloper": "Kenneth Reitz",
- "responsibleOrganization": "Kenneth Reitz",
- "url": "https://kennethreitz.org"
- },
- "description": "A simple HTTP Request & Response Service.<br/> <br/> <b>Run locally: </b> <code>$ docker run -p 80:80 kennethreitz/httpbin</code>",
- "title": "httpbin.org",
- "version": "0.9.2"
- },
- "paths": {
- "/get": {
- "get": {
- "produces": [
- "application/json"
- ],
- "responses": {
- "200": {
- "description": "The request's query parameters."
- }
- },
- "summary": "The request's query parameters.",
- "tags": [
- "HTTP Methods"
- ]
- }
- },
- "/post": {
- "post": {
- "produces": [
- "application/json"
- ],
- "responses": {
- "200": {
- "description": "The request's POST parameters."
- }
- },
- "summary": "The request's POST parameters.",
- "tags": [
- "HTTP Methods"
- ]
- }
- },
- "/json": {
- "get": {
- "produces": [
- "application/json"
- ],
- "responses": {
- "200": {
- "description": "An JSON document."
- }
- },
- "summary": "Returns a simple JSON document.",
- "tags": [
- "Response formats"
- ]
- }
- },
- "/uuid": {
- "get": {
- "produces": [
- "application/json"
- ],
- "responses": {
- "200": {
- "description": "A UUID4."
- }
- },
- "summary": "Return a UUID4.",
- "tags": [
- "Dynamic data"
- ]
- }
- }
- }
- }
|