Honeycomb · Example Payload

Honeycomb Run Query Example

ObservabilityTracingDistributed TracingTelemetryOpenTelemetryEventsLogsMetricsSLOAIOpsAI Observability

Honeycomb Run Query Example is an example object payload from Honeycomb, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.honeycomb.io/1/query_results/my-service",
    "headers": {
      "X-Honeycomb-Team": "$HONEYCOMB_API_KEY",
      "Content-Type": "application/json"
    },
    "body": {
      "query_id": "abc123XYZ",
      "disable_series": false,
      "limit": 1000
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "id": "qr_01HQABCDEF",
      "complete": false,
      "query_id": "abc123XYZ",
      "links": {
        "query_url": "https://ui.honeycomb.io/my-team/datasets/my-service/result/qr_01HQABCDEF"
      }
    }
  }
}