# ParallelDataCollection.get\_parallel\_datacollections

```python
coinmetrics._data_collection.ParallelDataCollection.get_parallel_datacollections()
```

Materialize the cartesian product of every parallelized URL parameter (and, optionally, every time / height increment) into one [`DataCollection`](https://gitbook-docs.coinmetrics.io/python-api-client/reference/parallel-data-collection/pages/4SxAThvJEKszVwNAKU88#coinmetrics._data_collection.DataCollection) per combination.

For example, calling:

```default
client.get_asset_metrics(assets="btc,eth,algo", ...) \
    .parallel() \
    .get_parallel_datacollections()
```

returns three data collections split by asset. Adding a second parallelization axis:

```default
client.get_asset_metrics(
    assets="btc,eth,algo",
    metrics="volume_reported_spot_usd_1d,volume_trusted_spot_usd_1d",
).parallel(parallelize_on=["metrics", "assets"]) \
 .get_parallel_datacollections()
```

returns six combinations. Layering a `time_increment` on top:

```default
client.get_asset_metrics(
    assets="btc,eth,algo",
    metrics="volume_reported_spot_usd_1d,volume_trusted_spot_usd_1d",
    start_time="2023-01-01",
    end_time="2023-02-01",
).parallel(
    parallelize_on=["metrics", "assets"],
    time_increment=timedelta(weeks=2),
).get_parallel_datacollections()
```

returns twelve, because each metric / asset pair is also split into two-week windows.

* **Returns:** One [`DataCollection`](https://gitbook-docs.coinmetrics.io/python-api-client/reference/parallel-data-collection/pages/4SxAThvJEKszVwNAKU88#coinmetrics._data_collection.DataCollection) per combination of parallelized parameters and time / height increment.

**Returns:**

* List\[[DataCollection](https://gitbook-docs.coinmetrics.io/python-api-client/reference/parallel-data-collection/pages/4SxAThvJEKszVwNAKU88#coinmetrics._data_collection.DataCollection)]


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gitbook-docs.coinmetrics.io/python-api-client/reference/parallel-data-collection/get_parallel_datacollections.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
