Skip to main content
POST
/
v1beta1
/
telemetryrelay
/
pipelines
Create forwarding pipeline
curl --request POST \
  --url https://api.coreweave.com/v1beta1/telemetryrelay/pipelines \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ref": {
    "slug": "<string>"
  },
  "spec": {
    "source": {
      "slug": "<string>"
    },
    "enabled": true
  }
}
'
{
  "pipeline": {
    "ref": {
      "slug": "<string>"
    },
    "spec": {
      "source": {
        "slug": "<string>"
      },
      "destination": {
        "slug": "<string>"
      },
      "enabled": true
    },
    "status": {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "stateMessage": "<string>",
      "zonesActive": [
        {
          "zoneSlug": "<string>",
          "clusters": [
            {
              "id": "<string>"
            }
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
default:Bearer [CW-API-TOKEN]
required

CoreWeave API access token sent as a bearer token.

Body

application/json
ref
object
required
spec
object
required

Configuration for a forwarding pipeline. source references a TelemetryStream by slug; destination references a ForwardingEndpoint by slug. Set enabled: false to pause forwarding without deleting the pipeline.

Response

OK

pipeline
object
Last modified on June 15, 2026