Get Platform Config
Retrieve configuration of the Feldera Platform.
Authentication
| Scheme | Type | Details |
|---|---|---|
JSON web token (JWT) or API key | Bearer token | Authorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint. |
Response
The response body contains basic configuration information about this host.
- object
build_infoobjectrequiredInformation about the build of the platform.build_sourcestringrequiredBuild source: "ci" for GitHub Actions builds, "source" for local buildschangelog_urlstringrequiredURL that navigates to the changelog of the current versioneditionstringrequiredFeldera edition: "Open source" or "Enterprise"license_validityobjectrevisionstringrequiredSpecific revision corresponding to the edition `version` (e.g., git commit hash).runtime_revisionstringrequiredSpecific revision corresponding to the default runtime version of the platform (e.g., git commit hash).telemetrystringrequiredTelemetry key.unstable_featuresstringList of unstable features that are enabled.update_infoobjectversionstringrequiredThe version corresponding to the type of `edition`. Format is `x.y.z`.
curl -X GET '/v0/config' \
-H 'Authorization: Bearer YOUR_TOKEN'