Skip to Content
API ReferencePlatformGet Platform Config

Get Platform Config

GET/v0/config
Authentication

Retrieve configuration of the Feldera Platform.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Response

application/json
The response body contains basic configuration information about this host.
  • object
    • build_infoobjectrequired
      Information about the build of the platform.
    • build_sourcestringrequired
      Build source: "ci" for GitHub Actions builds, "source" for local builds
    • changelog_urlstringrequired
      URL that navigates to the changelog of the current version
    • editionstringrequired
      Feldera edition: "Open source" or "Enterprise"
    • license_validityobject
    • revisionstringrequired
      Specific revision corresponding to the edition `version` (e.g., git commit hash).
    • runtime_revisionstringrequired
      Specific revision corresponding to the default runtime version of the platform (e.g., git commit hash).
    • telemetrystringrequired
      Telemetry key.
    • unstable_featuresstring
      List of unstable features that are enabled.
    • update_infoobject
    • versionstringrequired
      The version corresponding to the type of `edition`. Format is `x.y.z`.
Request
curl -X GET '/v0/config' \
  -H 'Authorization: Bearer YOUR_TOKEN'