> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Console

> A web interface for exploring your datasets and workflows, managing API keys and team members, and keeping track of your usage of the Tilebox platform.

The [Tilebox Console](https://console.tilebox.com) is a web interface that enables you to explore your datasets and workflows, manage your account and API keys, add collaborators to your team and monitor your usage.

## Datasets

The datasets explorer lets you explore available datasets for your team. You can select a dataset, view its collections, and load data for a collection within a specified time range.

<Frame>
  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/datasets-explorer-light.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=25163d0ab91baee40d610995d4681d47" alt="Tilebox Console" className="dark:hidden" width="1536" height="970" data-path="assets/console/datasets-explorer-light.png" />

  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/datasets-explorer-dark.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=f8a17599cec9041dc1d2e93efc34933c" alt="Tilebox Console" className="hidden dark:block" width="1536" height="970" data-path="assets/console/datasets-explorer-dark.png" />
</Frame>

When you click a specific event time in the data point list view, a detailed view of that data point will appear.

<Frame>
  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/datapoint-light.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=875bc97b670e46d60cd4cfdf67986200" alt="Tilebox Console" className="dark:hidden" width="1536" height="970" data-path="assets/console/datapoint-light.png" />

  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/datapoint-dark.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=8bd332e8876985077e87f3980d670885" alt="Tilebox Console" className="hidden dark:block" width="1536" height="970" data-path="assets/console/datapoint-dark.png" />
</Frame>

### Export as Code

After selecting a dataset, collection, and time range, you can export the current selection as a Python code snippet. This will copy a code snippet like the one below to your clipboard.

<CodeGroup>
  ```python Python theme={"system"}
  from tilebox.datasets import Client

  client = Client()
  datasets = client.datasets()
  sentinel2_msi = datasets.open_data.copernicus.sentinel2_msi
  data = sentinel2_msi.collection("S2A_S2MSI1C").query(
      temporal_extent=("2024-07-12", "2024-07-26"),
      show_progress=True,
  )
  ```

  ```go Go theme={"system"}
  ctx := context.Background()
  client := datasets.NewClient()

  dataset, err := client.Datasets.Get(ctx, "open_data.copernicus.sentinel2_msi")
  if err != nil {
      log.Fatalf("Failed to get dataset: %v", err)
  }

  collection, err := client.Collections.Get(ctx, dataset.ID, "S2A_S2MSI1C")
  if err != nil {
      log.Fatalf("Failed to get collection: %v", err)
  }

  startDate := time.Date(2024, 7, 12, 0, 0, 0, 0, time.UTC) 
  endDate := time.Date(2024, 7, 26, 0, 0, 0, 0, time.UTC) 
  timeInterval := query.NewTimeInterval(startDate, endDate)

  var datapoints []*v1.Sentinel2Msi
  err = client.Datapoints.QueryInto(ctx,
      dataset.ID,
      &datapoints,
      datasets.WithCollectionIDs(collection.ID),
      datasets.WithTemporalExtent(timeInterval),
  )
  if err != nil {
      log.Fatalf("Failed to query datapoints: %v", err)
  }
  ```
</CodeGroup>

<Tip>
  Paste the snippet into a [notebook](/sdks/python/sample-notebooks) to interactively explore the
  [`xarray.Dataset`](/sdks/python/xarray) that is returned.
</Tip>

## Workflows

The workflows section of the console allows you to view jobs, create clusters and create near real-time automations.

<Frame>
  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/automation-light.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=681c5c9b28280f68b58df22eece08e8f" alt="Tilebox Console" className="dark:hidden" width="1536" height="970" data-path="assets/console/automation-light.png" />

  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/automation-dark.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=6c99d31a5d61c5a1ab62aef2f5728f99" alt="Tilebox Console" className="hidden dark:block" width="1536" height="970" data-path="assets/console/automation-dark.png" />
</Frame>

## Account

### API Keys

The API Keys page enables you to manage your API keys. You can create new API keys, revoke existing ones, and view currently active API keys.

<Frame>
  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/api-keys-light.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=e29bee83bef620e01606f4943874a575" alt="Tilebox Console" className="dark:hidden" width="1536" height="970" data-path="assets/console/api-keys-light.png" />

  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/api-keys-dark.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=d7cb4d89aa0f8282cdf13f681b20b837" alt="Tilebox Console" className="hidden dark:block" width="1536" height="970" data-path="assets/console/api-keys-dark.png" />
</Frame>

### Usage

The Usage page allows you to view your current usage of the Tilebox API.

<Frame>
  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/usage-light.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=eb86dc8bc43ac5af106d94a3cb893973" alt="Tilebox Console" className="dark:hidden" width="1536" height="970" data-path="assets/console/usage-light.png" />

  <img src="https://mintcdn.com/tilebox/TYquvc9froFIydg1/assets/console/usage-dark.png?fit=max&auto=format&n=TYquvc9froFIydg1&q=85&s=c7856def013eda34132e5362b50cafbe" alt="Tilebox Console" className="hidden dark:block" width="1536" height="970" data-path="assets/console/usage-dark.png" />
</Frame>
