> ## 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.

# Collection.info

```python theme={"system"}
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

<ParamField path="availability" type="bool | None">
  Deprecated. Collection availability is always returned.
</ParamField>

<ParamField path="count" type="bool | None">
  Deprecated. Collection datapoint counts are always returned.
</ParamField>

## Returns

A collection info object.

<RequestExample>
  ```python Python theme={"system"}
  info = collection.info()
  ```
</RequestExample>
