Skip to main content
With an access token, you can interact with the Telemetry Relay API using curl or any other HTTP client. The API lets you manage forwarding endpoints and pipelines and list telemetry streams. These resources forward CoreWeave audit logs from the managed observability platform to your HTTPS destinations. For a conceptual walkthrough of Telemetry Relay (what an endpoint, pipeline, and stream are, and how they wire together), see the CoreWeave Telemetry Relay overview. For Cloud Console procedures, see Configure Telemetry Relay.
  • The API server is https://api.coreweave.com.
  • Replace [CW-API-TOKEN] in the examples on each operation page with your CoreWeave API access token.
  • Write operations (POST, PATCH, DELETE) require the Telemetry Relay Admin role. Read operations (GET) require the Telemetry Relay Reader role.
  • For information on required permissions, see IAM Access Policies.
If you call a write operation (POST, PATCH, DELETE) before your organization is enabled for self-service, the request returns 404 with "reason": "TELEMETRYRELAY_ORGANIZATION_NOT_FOUND". Contact Support to request enablement.
The API self-service scope is forwarding CoreWeave audit logs to your HTTPS destinations. For other telemetry or destinations, contact Support.

Endpoints

The API exposes three resource families: forwarding endpoints, forwarding pipelines, and telemetry streams. Per-resource operations take the resource’s ref.slug (a project-scoped human-readable name) as a path parameter, shown as {ref.slug} in the path templates below.

Forwarding endpoints

The following operations manage forwarding endpoints:
OperationMethodEndpointDescription
List forwarding endpointsGET/v1beta1/telemetryrelay/endpointsList all forwarding endpoints.
Create forwarding endpointPOST/v1beta1/telemetryrelay/endpointsCreate a forwarding endpoint.
Get forwarding endpointGET/v1beta1/telemetryrelay/endpoints/{ref.slug}Get a forwarding endpoint.
Update forwarding endpointPATCH/v1beta1/telemetryrelay/endpoints/{ref.slug}Update a forwarding endpoint.
Delete forwarding endpointDELETE/v1beta1/telemetryrelay/endpoints/{ref.slug}Delete a forwarding endpoint.
Get forwarding endpoint statusGET/v1beta1/telemetryrelay/endpoints/{ref.slug}:checkRead the last-known status of a forwarding endpoint.

Forwarding pipelines

The following operations manage forwarding pipelines:
OperationMethodEndpointDescription
List forwarding pipelinesGET/v1beta1/telemetryrelay/pipelinesList all forwarding pipelines.
Create forwarding pipelinePOST/v1beta1/telemetryrelay/pipelinesCreate a forwarding pipeline.
Get forwarding pipelineGET/v1beta1/telemetryrelay/pipelines/{ref.slug}Get a forwarding pipeline.
Update forwarding pipelinePATCH/v1beta1/telemetryrelay/pipelines/{ref.slug}Update a forwarding pipeline.
Delete forwarding pipelineDELETE/v1beta1/telemetryrelay/pipelines/{ref.slug}Delete a forwarding pipeline.

Telemetry streams

The following operations list and read telemetry streams:
OperationMethodEndpointDescription
List telemetry streamsGET/v1beta1/telemetryrelay/streamsList all telemetry streams.
Get telemetry streamGET/v1beta1/telemetryrelay/streams/{ref.slug}Get a telemetry stream.
Last modified on June 15, 2026