---
title: "Get exploration data and configuration"
method: GET
path: "/explorations/{exploration_id}"
tags: ["Explorations"]
---

# Get exploration data and configuration

`GET /explorations/{exploration_id}`

## Path parameters

- `exploration_id` string, required

## Query parameters

- `project_id` string, required

## Response `200`

Exploration configuration retrieved

- ExplorationWithConfig — Exploration object representing a data exploration task.
  - `id` string
  - `name` string
  - `description` string
  - `state` 'completed' | 'ongoing' | 'not_started' | 'upcoming'
  - `theoretical_combinations` integer, nullable
  - `real_combinations` integer, nullable
  - `remaining_time` string, date-time, nullable
  - `started_at` string, date-time, nullable
  - `finished_at` string, date-time, nullable
  - `current_sample` integer, nullable
  - `combinaisons` array[], nullable
    - string[]
  - `metrics` object, nullable
  - `combinaisons_file` string, uri
  - `config` ExplorationConfig — Configuration for the exploration. Specify the columns to be used in the exploration, and any global metrics to be applied.
    - `columns` ColumnConfig[], required
      - `label` string, required — Label of the column
      - `aggregation` AggregationConfig, nullable — Configuration for the column aggregation, if any. Specify the aggregationId to apply a specific aggregation to the column, and add the additional properties needed for that aggregation.
        - `aggregation_id` string — ID of the aggregation to be applied to the column, must be one of the available aggregations
      - `column_metrics` string[], nullable — List of metrics to be applied to the column, must be one of the available column metrics
    - `global_metrics` string[], nullable — List of global metrics to be applied to the exploration, must be one of the available global metrics
    - `column_metrics` ColumnMetricConfig[], nullable — List of metrics to be applied to the columns
      - `column_label` string — Label of the column to which the metric applies
      - `metrics` string[] — List of metrics to be applied to the column, must be one of the available column metrics

## Changes

> 10 revisions in range; 1 could not be searched.

- **2025-06-19** `df21912e3884` — 1 info
  - added the optional property `allOf[subschema #2]/config/column_metrics` to the response with the `200` status
- **2025-06-17** `4d81f9775513` — 1 info
  - added the optional property `allOf[#/components/schemas/Exploration]/metrics` to the response with the `200` status
- **2025-06-13** `c9d5206deff2` — 1 info
  - added the optional property `allOf[#/components/schemas/Exploration]/finished_at` to the response with the `200` status
- **2025-06-13** `cd0994605b52` — 1 info
  - added the optional property `allOf[#/components/schemas/Exploration]/started_at` to the response with the `200` status
- **2025-06-05** `0f01850f2d08` — 4 warning, 4 info
  - removed the optional property `allOf[#/components/schemas/Exploration]/combinaison` from the response with the `200` status
  - removed the optional property `allOf[#/components/schemas/Exploration]/combinaison_file` from the response with the `200` status
  - removed the optional property `allOf[#/components/schemas/Exploration]/real_computations` from the response with the `200` status
  - removed the optional property `allOf[#/components/schemas/Exploration]/theoretical_computations` from the response with the `200` status
  - …4 more

[Full history](https://skmtc.dev/debiai/apis/exploration-api/changes/explorations/:exploration_id/get.md)

---

[API](https://skmtc.dev/debiai/apis/exploration-api.md) · [All operations](https://skmtc.dev/debiai/apis/exploration-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/debiai/exploration-api/revisions/9a980d1404db/schema)
