SigNoz · Example Payload

Signoz List Ingestion Keys Example

APMAlertingCloud MonitoringDashboardsDistributed TracingInfrastructure MonitoringLogsMetricsObservabilityOpenTelemetryOpen Source

Signoz List Ingestion Keys Example is an example object payload from SigNoz, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

examplerequestresponse

Example Payload

Raw ↑
{
  "example": "List all ingestion keys for the organization",
  "request": {
    "method": "GET",
    "path": "/api/v2/gateway/ingestion_keys",
    "headers": {
      "SigNoz-Api-Key": "your-api-key"
    },
    "queryParameters": {
      "page_size": 25,
      "page": 1
    }
  },
  "response": {
    "status": 200,
    "body": {
      "data": {
        "keys": [
          {
            "id": "key-abc123",
            "name": "Production Ingestion Key",
            "value": "signoz-***-redacted",
            "orgId": "org-xyz789",
            "createdAt": "2026-01-15T08:00:00Z",
            "updatedAt": "2026-03-01T12:00:00Z"
          },
          {
            "id": "key-def456",
            "name": "Staging Ingestion Key",
            "value": "signoz-***-redacted",
            "orgId": "org-xyz789",
            "createdAt": "2026-02-01T09:00:00Z",
            "updatedAt": "2026-02-01T09:00:00Z"
          }
        ],
        "total": 2,
        "page": 1,
        "pageSize": 25
      }
    }
  }
}