v1

latestOpenAPI 3.0.3MIT2026-07-1411163326.7 KB
OTel

🧪 List OTLP exporters

[EXPERIMENTAL] Returns a list of OTLP exporter configurations for the given organization.

get/otel/exporters

Query parameters

org-idstring uuid required

An opaque identifier of an organization used in query parameters.

Response

List of OTLP exporters.

idstring uuid

The exporter ID.

org_idstring uuid

The organization ID that owns this exporter.

endpointstring

The OTLP endpoint to send spans to.

protocol'grpc' | 'http'

The OTLP transport to use when exporting data.

insecureboolean

Whether to use an insecure connection to the endpoint.

headersobject

Additional headers to include in export requests. Header values are encrypted at rest and will appear redacted as "xxxx" in responses.

issuesstring[]

A list of validation issues detected with this exporter configuration, such as an endpoint that no longer resolves. Only present when issues are detected.

Example response

[
  {
    "id": "123e4127-e89b-12d3-a456-426123417400",
    "org_id": "b9291e0d-a11e-41fb-8517-c545388b5953",
    "endpoint": "otel.example.com:4317",
    "protocol": "grpc"
  }
]