- Overview
- Get started
- Work with data
- Manage access
On this page
Related contents
ScopeDB Cloud concepts
ScopeDB Cloud is the managed ScopeDB service. You work with data through the Console, SDKs, the ScopeQL CLI, and the HTTP data API.
Core concepts
| Concept | What it means |
|---|---|
| Workspace | The current Console context for a data catalog and its programmatic access. Connection values and API keys shown in the Console belong to this workspace. |
| Console | The workspace-specific UI for exploring the catalog, running queries, connecting clients, and managing API keys. |
| ScopeDB API address | The HTTPS base URL shown under its purpose label in Connect. SDKs, the CLI, and HTTP clients use this value as their endpoint. |
| API key | A secret credential created for programmatic access to a workspace. Send it as a bearer token and keep it out of client-side applications. |
| Catalog | The databases, schemas, tables, and views available in the current workspace. ScopeQL operates on these objects. |
Console and API responsibilities
Use the Console when you need workspace-specific information or an interactive workflow:
- Explore to browse the catalog;
- Query to run ScopeQL interactively;
- Connect to copy a purpose-labeled API address and client recipe;
- API Keys to create or revoke credentials.
Use an SDK, the CLI, or the HTTP API when an application, job, or script needs
programmatic access. The documentation uses placeholders such as
https://<endpoint> because the authoritative value comes from Connect in
your workspace.
Typical workflow
- Open ScopeDB Console; the current workspace is the context for the workflow.
- Inspect existing data in Explore or run ScopeQL in Query.
- For programmatic access, open Connect and copy the ScopeDB API address.
- Create an API key and copy its one-time secret.
- Configure a server-side client and verify it with
SELECT 1.
Continue with Connect an application for the exact steps.