Zipkin · Example Payload

Zipkin Api V2 Get Services Example

Example response for listing all service names registered in Zipkin

Distributed TracingObservabilityOpen SourceMicroservices

Zipkin Api V2 Get Services Example is an example object payload from Zipkin, 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 Services Example",
  "description": "Example response for listing all service names registered in Zipkin",
  "request": {
    "method": "GET",
    "path": "/api/v2/services",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      "frontend",
      "backend-api",
      "database-service",
      "cache-service",
      "auth-service"
    ]
  }
}