# Collection.info

```python
def Collection.info(
    availability: bool | None = None,
    count: bool | None = None,
) -> CollectionInfo
```

Fetch metadata about the data points in this collection.

Collection availability and datapoint counts are always returned. The `availability` and `count` arguments are deprecated and no longer affect the response.

## Parameters

**availability**

`bool | None`

Deprecated. Collection availability is always returned.

**count**

`bool | None`

Deprecated. Collection datapoint counts are always returned.

## Returns

A collection info object.

```python title="Python"
info = collection.info()
```
