Skip to main content
GET
/
v1beta1
/
telemetryrelay
/
endpoints
/
{ref.slug}
Get forwarding endpoint
curl --request GET \
  --url https://api.coreweave.com/v1beta1/telemetryrelay/endpoints/{ref.slug} \
  --header 'Authorization: Bearer <token>'
{
  "endpoint": {
    "ref": {
      "slug": "<string>"
    },
    "spec": {
      "displayName": "<string>",
      "https": {
        "endpoint": "<string>",
        "tls": {
          "certificateAuthorityData": "<string>"
        }
      }
    },
    "status": {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "stateMessage": "<string>",
      "zonesActive": [
        {
          "zoneSlug": "<string>",
          "clusters": [
            {
              "id": "<string>"
            }
          ]
        }
      ],
      "credentialsConfigured": true,
      "credentialsUpdatedAt": "2023-11-07T05:31:56Z"
    }
  }
}

Authorizations

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

CoreWeave API access token sent as a bearer token.

Path Parameters

ref.slug
string
required

Response

OK

endpoint
object

ForwardingEndpoint represents a destination where telemetry data can be forwarded. Endpoints are organization-scoped and identified by a unique slug. Self-service endpoints forward over HTTPS.

Last modified on June 15, 2026