HTTP Toolkit · Example Payload

Get Version

Example request and response for the GET /version endpoint.

HTTPHTTPSDebuggingProxyInterceptionMockingTestingDeveloper ToolsOpen Source

Get Version is an example object payload from HTTP Toolkit, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Get Server Version",
  "description": "Example request and response for the GET /version endpoint.",
  "request": {
    "method": "GET",
    "url": "http://localhost:45456/version",
    "headers": {
      "Authorization": "Bearer <token>"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "version": "1.3.2"
    }
  }
}